lean4-htt/tests/lean/run/1650.lean
Leonardo de Moura e3ec468e3b fix: fixes #1650
2022-10-07 19:00:23 -07:00

10 lines
149 B
Text

mutual
protected def Foo.toString : Foo → String
:= fun _ => "foo"
def toString' : Foo → String := fun _ => "foo"
end
#check @Foo.toString