Files
kotlin-fork/idea/testData/quickfix/changeObjectToClass/primaryConstructor.kt
T

8 lines
150 B
Kotlin
Vendored

// "Change 'object' to 'class'" "true"
annotation class Ann
// comment
@Ann
object Foo<caret>(val s: String) : Any() {
constructor() : this("")
}