a1e86e8bfa
(cherry picked from commit a51d3fc)
11 lines
157 B
Kotlin
Vendored
11 lines
157 B
Kotlin
Vendored
// "Create member function 'A.Companion.foo'" "true"
|
|
|
|
class A<T>(val n: T) {
|
|
companion object {
|
|
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
val a: Int = A.<caret>foo(2)
|
|
} |