lean4-htt/tests/lean/mutualWithNamespaceMacro.lean
2020-09-01 12:25:29 -07:00

25 lines
352 B
Text
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

new_frontend
mutual
inductive Foo.Lst (α : Type)
| nil : Lst
| cons : Tree → Lst → Lst
inductive Boo.Tree (α : Type) -- conflicting namespace
| leaf : Tree
| node : Lst → Tree
end
mutual
inductive Foo.Lst (α : Type)
| nil : Lst
| cons : Tree → Lst → Lst
inductive Foo.Tree (α : Type)
| leaf : Tree
| node : Lst → Tree
end