lean4-htt/tests/lean/run/462.lean
2021-08-12 06:18:47 -07:00

12 lines
244 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.

class FooClass (α : Type) where
foo : α
class BarClass (α : Type) where
bar : α
class FooBarClass (α : Type) where
foo : α
bar : α
instance (α : Type) [h : FooClass α] [h' : BarClass α] : FooBarClass α :=
{ h, h' with }