7 lines
107 B
Kotlin
Vendored
7 lines
107 B
Kotlin
Vendored
// http://youtrack.jetbrains.net/issue/KT-418
|
|
|
|
fun ff() {
|
|
val i: Int = 1
|
|
val a: Int = i?.plus(2)
|
|
}
|