Files
kotlin-fork/idea/testData/inspectionsLocal/unusedUnaryOperator/basic2.kt
T
2020-05-27 02:38:40 +09:00

6 lines
115 B
Kotlin
Vendored

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