mirror of
https://github.com/anoma/juvix.git
synced 2024-12-01 00:04:58 +03:00
ab83749a86
- Closes #2089 Now the symbols inside `using {..}` and `hiding {..}` are properly scoped, which means that they will be properly colored and will have goto information. If the referenced module does not contain a symbol in the list, an error will be thrown.
9 lines
80 B
Plaintext
9 lines
80 B
Plaintext
module Main;
|
|
|
|
module M;
|
|
axiom A : Type;
|
|
axiom B : Type;
|
|
end;
|
|
|
|
open M using {c};
|