mirror of
https://github.com/erg-lang/erg.git
synced 2025-09-30 04:44:44 +00:00
5 lines
129 B
Python
5 lines
129 B
Python
_ = import "foo" # OK
|
|
_ = import "foo/bar" # OK
|
|
_ = import "foo/baz" # ERR
|
|
_ = import "foo/qux" # ERR
|
|
_ = import "foo/quux" # OK
|