4d9b19da82
#KT-18539 Fixed
11 lines
223 B
Plaintext
Vendored
11 lines
223 B
Plaintext
Vendored
// "Create member function 'A.foo'" "true"
|
|
|
|
class A<T>(val n: T) {
|
|
fun test(): A<Int> {
|
|
return this.foo(2, "2")
|
|
}
|
|
|
|
private fun foo(i: Int, s: String): A<Int> {
|
|
TODO("Not yet implemented")
|
|
}
|
|
} |