lean4-htt/tests/lean/run/emptycOverloadIssues.lean
Leonardo de Moura cc6104b369 fix: bug in the old frontend
It had to be fixed because we have code that needs to be compiled with
the old frontend, and the hacks we used to workaround this issue are
incompatible with the new frontend.
2020-09-11 14:12:03 -07:00

8 lines
90 B
Text

structure A :=
(x : Nat := 10)
abbrev B := A
structure C :=
(a : A := {})
(b : B := {})