11 lines
138 B
Kotlin
Vendored
11 lines
138 B
Kotlin
Vendored
interface Bar {
|
|
fun <T> T.bar() {}
|
|
}
|
|
|
|
class A {
|
|
companion object : Bar
|
|
}
|
|
|
|
fun test() {
|
|
A.<error><error>bar</error></error>()
|
|
} |