mirror of
https://github.com/edwinb/Idris2-boot.git
synced 2024-12-18 10:21:39 +03:00
c458957bd6
Fixes #132. When getting the names in the block, we need to return the fully explicit name, because we can't assume they'll all be in the same namespace as we can have namespaces inside parameters blocks.
8 lines
85 B
Idris
8 lines
85 B
Idris
parameters (n:Nat)
|
|
namespace X
|
|
foo : Bool
|
|
foo = True
|
|
|
|
U : Bool
|
|
U = foo
|