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

14 lines
131 B
Plaintext
Vendored

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