Idris2/tests/idris2/data/record006/Fld.idr
2023-09-07 14:57:22 +01:00

7 lines
103 B
Idris

record Is3 (n : Nat) where
constructor MkThree
{auto prf : n === 3}
three : Is3 3
three = MkThree