4d9b19da82
#KT-18539 Fixed
14 lines
231 B
Plaintext
Vendored
14 lines
231 B
Plaintext
Vendored
// "Create member function 'A.Companion.foo'" "true"
|
|
|
|
class A<T>(val n: T) {
|
|
companion object {
|
|
fun foo(i: Int): Int {
|
|
TODO("Not yet implemented")
|
|
}
|
|
|
|
}
|
|
}
|
|
|
|
fun test() {
|
|
val a: Int = A.foo(2)
|
|
} |