Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
699829ccb3e80dbb53c10cccdf1e50f06a5c5346
/
.
/
idea
/
testData
/
quickfix
/
changeObjectToClass
/
primaryConstructor.kt.after
blob: c02b190c1aeac57159d20a6243b0e14ee2139262 [
file
]
// "Change 'object' to 'class'" "true"
annotation
class
Ann
// comment
@Ann
class
Foo
(
val s
:
String
)
:
Any
()
{
constructor
()
:
this
(
""
)
}