This commit is contained in:
Richard Feldman 2022-07-08 16:39:20 -04:00
parent 8c5f798f4e
commit 1364f1e518
No known key found for this signature in database
GPG key ID: 7E4127D1E4241798
2 changed files with 8 additions and 2 deletions

View file

@ -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

View file

@ -0,0 +1,6 @@
interface Dep3.Other
exposes [foo, bar]
imports []
foo = "foo from Dep3.Other"
bar = "bar from Dep3.Other"