4946f55290
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
8 lines
176 B
Text
8 lines
176 B
Text
definition Prop : Type.{1} := Type.{0}
|
|
constants a b c : Prop
|
|
axiom Ha : a
|
|
axiom Hb : b
|
|
axiom Hc : c
|
|
check have H1 [visible] : a, from Ha,
|
|
have H2 : a, from H1,
|
|
H2
|