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
@@ -3,7 +3,7 @@
class A<T>(val n: T) {
fun plus(): A<T> = throw Exception()
fun plus(arg: T): A<T> {
fun plus(t: T): A<T> {
throw UnsupportedOperationException("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}