parent
b70820929f
commit
743810b77a
2 changed files with 7 additions and 1 deletions
|
|
@ -113,7 +113,7 @@ macro_rules | `($x > $y) => `(binrel% GT.gt $x $y)
|
|||
macro_rules | `($x >= $y) => `(binrel% GE.ge $x $y)
|
||||
macro_rules | `($x ≥ $y) => `(binrel% GE.ge $x $y)
|
||||
macro_rules | `($x = $y) => `(binrel% Eq $x $y)
|
||||
macro_rules | `($x == $y) => `(binrel% BEq.beq $x $y)
|
||||
macro_rules | `($x == $y) => `(binrel_no_prop% BEq.beq $x $y)
|
||||
|
||||
infixr:35 " /\\ " => And
|
||||
infixr:35 " ∧ " => And
|
||||
|
|
|
|||
6
tests/lean/run/764.lean
Normal file
6
tests/lean/run/764.lean
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#eval (5 > 2) == true
|
||||
#eval (2 > 5) == true
|
||||
|
||||
variable (b : Bool)
|
||||
|
||||
#check (5 > 2) == b
|
||||
Loading…
Add table
Reference in a new issue