138370ce5b
#KT-6604 In Progress
12 lines
196 B
Kotlin
Vendored
12 lines
196 B
Kotlin
Vendored
// "Move to constructor parameters" "true"
|
|
annotation class foo
|
|
|
|
open class A(s: String) {
|
|
<caret>private @foo val /*1*/ n: /* 2 */ Int
|
|
}
|
|
|
|
class B : A("")
|
|
|
|
fun test() {
|
|
val a = A("")
|
|
} |