lean4-htt/tests/lean/run/1657.lean
2017-06-09 20:06:50 +02:00

29 lines
556 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.

namespace X1
inductive wrap (A : Type) : Type
| mk : A → wrap
inductive type : Type
| mk : list type → type
| refinement : type → (bool → type) → type
end X1
namespace X2
inductive type : Type
| mk : (bool → type) → list type → → type
| refinement : list type → type → → (∀ (b : bool), b = tt → type) → (bool → type) → type
end X2
namespace X3
mutual inductive type, term
with type : Type
| fn : list type → type
| refinement : type → (string → type) → type
with term : Type
| apply : term
end X3