15 lines
153 B
Kotlin
Vendored
15 lines
153 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
class C {
|
|
companion object {
|
|
}
|
|
}
|
|
|
|
class Test {
|
|
fun foo(i: Any) {
|
|
}
|
|
|
|
fun test() {
|
|
this.foo(<caret>C)
|
|
}
|
|
} |