Idris2/tests/idris2/coverage/coverage015/Issue1169.idr
2023-09-07 14:57:22 +01:00

11 lines
149 B
Idris

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