Reports function literal parameters that are not surrounded by parenthesis.

In Scala 3, a function literal with only one parameter cannot omit the parenthesis around the parameter.

Example:


  call { a: Int => a }

After the quick-fix is applied:


  call { (a: Int) => a }