Merge branch 'main' into builtin-task

This commit is contained in:
Sam Mohr 2024-07-03 13:37:46 -07:00
commit 6f5f5f431e
No known key found for this signature in database
GPG key ID: EA41D161A3C1BC99
3 changed files with 33 additions and 2 deletions

View file

@ -11783,6 +11783,30 @@ In roc, functions are always written as a lambda, like{}
"###
);
test_report!(
import_qualified_builtin,
indoc!(
r#"
app [main] { pf: platform "../../tests/platform.roc" }
import pf.Bool
main =
""
"#
),
@r###"
 FILE NOT FOUND in tmp/import_qualified_builtin/../../tests/Bool.roc 
I am looking for this file, but it's not there:
tmp/import_qualified_builtin/../../tests/Bool.roc
Is the file supposed to be there? Maybe there is a typo in the file
name?
"###
);
test_report!(
invalid_toplevel_cycle,
indoc!(