3756b6f54d
#KT-12134 Fixed
15 lines
286 B
Kotlin
Vendored
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()
|
|
}
|
|
}
|
|
}
|
|
} |