mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
Fix hang on qualified import with builtin name
This commit is contained in:
parent
f69d39dffc
commit
13ba59a4cb
3 changed files with 33 additions and 2 deletions
|
@ -11782,6 +11782,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###"
|
||||
[1;36m── FILE NOT FOUND in tmp/import_qualified_builtin/../../tests/Bool.roc ─────────[0m
|
||||
|
||||
I am looking for this file, but it's not there:
|
||||
|
||||
[1;33mtmp/import_qualified_builtin/../../tests/Bool.roc[0m
|
||||
|
||||
Is the file supposed to be there? Maybe there is a typo in the file
|
||||
name?
|
||||
"###
|
||||
);
|
||||
|
||||
test_report!(
|
||||
invalid_toplevel_cycle,
|
||||
indoc!(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue