Idris2/tests/idris2/coverage015/Issue1169.idr
2021-05-03 13:52:01 +01:00

11 lines
149 B
Idris

%default total
test : (String, ()) -> ()
test ("a", ()) = ()
test' : (Int, ()) -> ()
test' (1, ()) = ()
test'' : Type -> Type
test'' (List a) = a