Files
kotlin-fork/idea/testData/inspectionsLocal/removeRedundantQualifierName/secondaryConstructor.kt.after
T
2019-02-27 20:43:35 +03:00

15 lines
267 B
Plaintext
Vendored

// WITH_RUNTIME
package my.simple.name
class Outer {
class Foo constructor() {
constructor(i: Int) : this()
companion object {
fun check() {
val a = Foo(1)
val b = Foo()
}
}
}
}