Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createSecondaryConstructor/noParametersImplicitSuperCall.kt.after
T
Alexey Sedunov 3ba776fffa Code Insight: Format generated declarations
#KT-11176 Fixed
(cherry picked from commit 3641ad6)
2016-07-20 15:39:05 +03:00

8 lines
139 B
Plaintext
Vendored

// "Create secondary constructor" "true"
open class Base()
class Creation {
constructor(f: Int)
constructor()
}
val v = Creation()