mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 15:53:49 +00:00
9 lines
284 B
Kotlin
Vendored
9 lines
284 B
Kotlin
Vendored
// SUGGESTED_NAMES: i, getKm
|
|
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_DESCRIPTOR: public val meters: kotlin.Int? defined in root package in file topLevelValUnderSmartCast.kt
|
|
val meters: Int? = 1
|
|
|
|
fun test() {
|
|
if (meters == null) return
|
|
val km = <selection>meters / 10</selection>
|
|
} |