Files
kotlin-fork/idea/testData/refactoring/changeSignature/AddConstructorVisibilityAfter.kt
T

6 lines
77 B
Kotlin
Vendored

class C1 protected constructor(val x: Any) {}
fun f() {
val c = C1(12);
}