Files
kotlin-fork/idea/testData/intentions/convertPrimaryConstructorToSecondary/independentProperty3.kt
T
2016-09-30 16:39:13 +03:00

5 lines
80 B
Kotlin
Vendored

fun foo(x: Int) {
class Local<caret>(val y: Int) {
val z = x
}
}