lean4-htt/old_tests/tests/lean/structure_segfault.lean
2018-04-10 12:56:55 -07:00

15 lines
246 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.

universes u
namespace ex
structure group (α : Type u) : Type u
structure T (α : extends group α := ()
structure ring (α : Type u) : Type u
class T (α : Type*) extends ring x α
class S (α : Type*) extends ((λ x, group x) α)
end ex