Simplify tail-call checks

This commit is contained in:
Sam Mohr 2024-10-26 07:17:52 -07:00
parent 33d868117f
commit 346a2d9467
No known key found for this signature in database
GPG key ID: EA41D161A3C1BC99
3 changed files with 33 additions and 70 deletions

View file

@ -96,7 +96,8 @@ fn early_return_solo() {
identity "abc"
"#,
RocStr::from("abc"),
RocStr
RocStr,
true
);
assert_evals_to!(
@ -107,6 +108,7 @@ fn early_return_solo() {
identity 123
"#,
123,
i64
i64,
true
);
}