Support for generic classes in quickfix for NOTHING_TO_OVERRIDE
This commit is contained in:
committed by
Andrey Breslav
parent
d4fc814d76
commit
cacb4b26e4
@@ -0,0 +1,8 @@
|
||||
// "Change function signature to 'override fun f(a: Int, x: T)'" "true"
|
||||
trait A<R> {
|
||||
fun f(a: Int, b: R)
|
||||
}
|
||||
|
||||
class B<T> : A<T> {
|
||||
<caret>override fun f(a: Int, x: T) {}
|
||||
}
|
||||
Reference in New Issue
Block a user