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