mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-21 10:41:59 +03:00
11 lines
117 B
Idris
11 lines
117 B
Idris
|
namespace X
|
||
|
export
|
||
|
OneX : Bool -> Bool
|
||
|
|
||
|
namespace Y
|
||
|
export
|
||
|
data Foo = OneX
|
||
|
|
||
|
foo : Bool
|
||
|
foo = OneX (id False)
|