Files
kotlin-fork/idea/testData/codeInsight/outOfBlock/InGlobalPropertyWithGetter.kt
T
2019-10-30 21:41:29 +01:00

10 lines
166 B
Kotlin
Vendored

// OUT_OF_CODE_BLOCK: FALSE
class B(val a: A)
val B.foo: Int
get() {
return <caret>when (a) {
A.e1 -> 1
A.e2 -> 4
}
}