mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-04 12:18:19 +00:00
Reproduce #3451
This commit is contained in:
parent
8c5f798f4e
commit
1364f1e518
2 changed files with 8 additions and 2 deletions
|
@ -1,10 +1,10 @@
|
|||
interface Dep3.Blah
|
||||
exposes [one, two, foo, bar]
|
||||
imports []
|
||||
imports [Dep3.Other]
|
||||
|
||||
one = 1
|
||||
|
||||
two = 2
|
||||
|
||||
foo = "foo from Dep3"
|
||||
bar = "bar from Dep3"
|
||||
bar = Dep3.Other.bar
|
||||
|
|
6
crates/compiler/load_internal/tests/fixtures/build/app_with_deps/Dep3/Other.roc
vendored
Normal file
6
crates/compiler/load_internal/tests/fixtures/build/app_with_deps/Dep3/Other.roc
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
interface Dep3.Other
|
||||
exposes [foo, bar]
|
||||
imports []
|
||||
|
||||
foo = "foo from Dep3.Other"
|
||||
bar = "bar from Dep3.Other"
|
Loading…
Add table
Add a link
Reference in a new issue