9e69b74a15
#KT-7576 Fixed
9 lines
249 B
Kotlin
Vendored
9 lines
249 B
Kotlin
Vendored
// SUGGESTED_NAMES: i, getKm
|
|
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_DESCRIPTOR: internal val meters: kotlin.Int? defined in root package
|
|
val meters: Int? = 1
|
|
|
|
fun test() {
|
|
if (meters == null) return
|
|
val km = <selection>meters / 10</selection>
|
|
} |