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