intellij-arend icon indicating copy to clipboard operation
intellij-arend copied to clipboard

False positive "redundant parentheses" error

Open valis opened this issue 2 years ago • 0 comments

\class Ring (E : \Set)
  | \infixl 6 + : E -> E -> E
  | \infixl 7 * : E -> E -> E

\func test {R : Ring} (x y z : R) (p : (x R.+ y) * z = x)
  => p

It works if R.+ is replaced with +.

valis avatar Jul 07 '22 15:07 valis