mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-20 10:02:03 +03:00
10 lines
126 B
Idris
10 lines
126 B
Idris
record Foo where
|
|
constructor MkFoo
|
|
{Gnu : Char}
|
|
|
|
AFoo : Foo
|
|
AFoo = MkFoo {Gnu = 'c'}
|
|
|
|
Bar : Foo
|
|
Bar = { Gnu := '?' } AFoo
|