TYPE_ARGUMENTS_REDUNDANT quickfix added to this branch, tested and completed
This commit is contained in:
committed by
Andrey Breslav
parent
ec5331057a
commit
d928c09931
@@ -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();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user