mirror of
https://github.com/idris-lang/Idris2.git
synced 2024-12-14 22:02:07 +03:00
11 lines
169 B
Idris
11 lines
169 B
Idris
module B
|
|
|
|
public export
|
|
record Rec where
|
|
constructor MkRec
|
|
field : Char --- Unit and Bool don't cause the bug
|
|
|
|
public export
|
|
defaultRec : Rec
|
|
defaultRec = MkRec 'a'
|