Files
kotlin-fork/idea/testData/quickfix/expressions/beforeUnsafeCall2.kt
T
Nikolay Krasko 83d0e8ebb5 - Merge https://github.com/JetBrains/kotlin/pull/90
- Move introduce and remove !! call to one class
2012-07-02 20:41:18 +04:00

5 lines
86 B
Kotlin

// "Add non-null asserted (!!) call" "true"
fun foo(a: Int?) {
a<caret>.plus(1)
}