Files
kotlin-fork/idea/testData/inspectionsLocal/unusedUnaryOperator/basic2.kt.after
T
Toshiaki Kameyama 74970ddfeb Introduce "Unused unary operator" inspection
#KT-12073 Fixed
2019-10-18 18:50:53 +07:00

6 lines
106 B
Plaintext
Vendored

// "Remove unused unary operator" "true"
fun test(foo: Int?): Int {
val a = 1 + 2
3
return a
}