Files
kotlin-fork/idea/testData/quickfix/moveToConstructorParameters/propertyWithModifiersAndComments.kt.after
T
2015-11-16 11:30:02 +03:00

11 lines
188 B
Plaintext
Vendored

// "Move to constructor parameters" "true"
annotation class foo
open class A(s: String, private @foo val /*1*/ n: /* 2 */ Int) {
}
class B : A("", 0)
fun test() {
val a = A("", 0)
}