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

62 lines
688 B
Text

section
parameter P : match unit.star with
| unit.star := true
end
include P
example : false :=
begin
dsimp [_match_1] at P,
guard_hyp P := true,
admit
end
end
section
parameter P : match unit.star with
| unit.star := true
end
include P
example : false :=
begin
dsimp [_match_1] at P,
guard_hyp P := true,
admit
end
end
section
parameter P : match unit.star with
| unit.star := true
end
parameter Q : match unit.star with
| unit.star := true
end
section
include P
example : false :=
begin
dsimp [_match_1] at P,
guard_hyp P := true,
admit
end
end
section
include Q
example : false :=
begin
dsimp [_match_2] at Q,
guard_hyp Q := true,
admit
end
end
end