a1e86e8bfa
(cherry picked from commit a51d3fc)
11 lines
295 B
Plaintext
Vendored
11 lines
295 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 implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
} |