diff --git a/crates/compiler/test_gen/src/gen_tags.rs b/crates/compiler/test_gen/src/gen_tags.rs index 2c09e8c1c9..379532202a 100644 --- a/crates/compiler/test_gen/src/gen_tags.rs +++ b/crates/compiler/test_gen/src/gen_tags.rs @@ -957,7 +957,7 @@ fn phantom_polymorphic() { } #[test] -#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))] +#[cfg(any(feature = "gen-llvm", feature = "gen-wasm", feature = "gen-dev"))] fn phantom_polymorphic_record() { assert_evals_to!( indoc!( @@ -975,8 +975,8 @@ fn phantom_polymorphic_record() { main = add zero "# ), - (0, 0), - (i64, i64) + (0, 0, 0), + (i64, i64, i64) ); }