= { ... }
Example:
fun sum(a: Int, b: Int) = { a + b } // The return type of this function is '() -> Int'.
The quick fix removes braces:
fun sum(a: Int, b: Int) = a + b