mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 18:21:47 +03:00
17 lines
219 B
Idris
17 lines
219 B
Idris
module GetVis
|
|
|
|
import Language.Reflection
|
|
|
|
private fooPriv : Int
|
|
export fooExp : Int
|
|
public export fooPubExp : Int
|
|
|
|
namespace A
|
|
private foo : Int
|
|
|
|
namespace B
|
|
export foo : Int
|
|
|
|
namespace C
|
|
public export foo : Int
|