5 lines
131 B
Text
5 lines
131 B
Text
class A (α : Type _) where a : α → Unit
|
||
|
||
instance : A Empty where a x := nomatch x
|
||
|
||
def test : A Empty where a x := nomatch x
|