Skip to content

Commit

Permalink
Fix test_gen incorrect macro invocations
Browse files Browse the repository at this point in the history
  • Loading branch information
smores56 committed Oct 27, 2024
1 parent 346a2d9 commit be363b1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions crates/compiler/test_gen/src/gen_return.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ use crate::helpers::llvm::assert_evals_to;
#[cfg(feature = "gen-dev")]
use crate::helpers::dev::assert_evals_to;

#[cfg(feature = "gen-llvm")]
use crate::helpers::llvm::identity;

#[cfg(feature = "gen-dev")]
use crate::helpers::dev::identity;

#[allow(unused_imports)]
use indoc::indoc;
#[allow(unused_imports)]
Expand Down Expand Up @@ -97,6 +103,7 @@ fn early_return_solo() {
"#,
RocStr::from("abc"),
RocStr,
identity,
true
);

Expand All @@ -109,6 +116,7 @@ fn early_return_solo() {
"#,
123,
i64,
identity,
true
);
}

0 comments on commit be363b1

Please sign in to comment.