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

15 lines
286 B
Kotlin
Vendored

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