fix return type/CC issue

This commit is contained in:
Folkert 2023-04-09 16:52:53 +02:00
parent 9f8fb61281
commit c36a82d134
No known key found for this signature in database
GPG key ID: 1F17F6FFD112B97C

View file

@ -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)
);
}