Files
kotlin-fork/idea/testData/intentions/moveOutOfCompanion/moveProperty.kt
T
2016-02-04 12:26:19 +03:00

13 lines
141 B
Kotlin
Vendored

class A {
companion object {
class B {
}
val <caret>foo: Int = 1
}
fun bar() {
foo + 1
}
}