Name suggester: Respect type parameter name when suggesting name for

variables based on that type parameter
This commit is contained in:
Alexey Sedunov
2014-10-31 15:45:37 +03:00
parent f81c2d5ff7
commit 7123ca8ea0
33 changed files with 35 additions and 35 deletions
@@ -1,7 +1,7 @@
// "Create function 'invoke'" "true"
class A<T>(val n: T) {
fun invoke(arg: T, s: String): B<String> {
fun invoke(t: T, s: String): B<String> {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}