mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-15 00:21:28 +00:00
13 lines
279 B
Kotlin
Vendored
13 lines
279 B
Kotlin
Vendored
|
|
// SUGGESTED_NAMES: i, getKm
|
|
// PARAM_TYPES: kotlin.Int
|
|
// PARAM_DESCRIPTOR: public final val meters: kotlin.Int? defined in A
|
|
class A {
|
|
val meters: Int? = 1
|
|
}
|
|
|
|
fun test() {
|
|
val a = A()
|
|
if (a.meters == null) return
|
|
val km = <selection>a.meters / 10</selection>
|
|
} |