lean4-htt/tests/lean/1862.lean
2017-11-09 09:49:53 -08:00

10 lines
125 B
Text

variable R : Type
variable [ring R]
example : -(-(1:R)) = 1 :=
begin
trace_state,
exact neg_neg 1,
end
#check - -(1:R)