TYPE_ARGUMENTS_REDUNDANT quickfix added to this branch, tested and completed

This commit is contained in:
Kevin F. Chen
2013-03-11 21:06:16 -04:00
committed by Andrey Breslav
parent ec5331057a
commit d928c09931
6 changed files with 101 additions and 2 deletions
@@ -0,0 +1,10 @@
// "Remove type arguments" "true"
trait Foo<T, T> {
fun f() {}
}
class Bar: Foo<Int, Boolean> {
fun g() {
super<Foo<caret>>.f();
}
}
@@ -0,0 +1,10 @@
// "Remove type arguments" "true"
trait Foo<T, T> {
fun f() {}
}
class Bar: Foo<Int, Boolean> {
fun g() {
super<Foo<Int, <caret>Boolean>>.f();
}
}