mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-19 09:12:34 +03:00
e58bcfc7ef
Co-authored-by: Guillaume ALLAIS <guillaume.allais@ens-lyon.org>
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)
|