mirror of
https://github.com/roc-lang/roc.git
synced 2025-11-29 15:01:21 +00:00
fix return type/CC issue
This commit is contained in:
parent
9f8fb61281
commit
c36a82d134
1 changed files with 3 additions and 3 deletions
|
|
@ -957,7 +957,7 @@ fn phantom_polymorphic() {
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm"))]
|
#[cfg(any(feature = "gen-llvm", feature = "gen-wasm", feature = "gen-dev"))]
|
||||||
fn phantom_polymorphic_record() {
|
fn phantom_polymorphic_record() {
|
||||||
assert_evals_to!(
|
assert_evals_to!(
|
||||||
indoc!(
|
indoc!(
|
||||||
|
|
@ -975,8 +975,8 @@ fn phantom_polymorphic_record() {
|
||||||
main = add zero
|
main = add zero
|
||||||
"#
|
"#
|
||||||
),
|
),
|
||||||
(0, 0),
|
(0, 0, 0),
|
||||||
(i64, i64)
|
(i64, i64, i64)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue