d86e87d35e
#KT-33586 Fixed
8 lines
146 B
Kotlin
Vendored
8 lines
146 B
Kotlin
Vendored
// "Change object to class" "true"
|
|
annotation class Ann
|
|
|
|
// comment
|
|
@Ann
|
|
object Foo<caret>(val s: String) : Any() {
|
|
constructor() : this("")
|
|
} |