mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
Fixed KT-4892 Override method generates redundant type arguments in call to super
#KT-4892 Fixed
This commit is contained in:
@@ -4,6 +4,6 @@ import foo.Intf
|
||||
|
||||
class Impl(): Intf() {
|
||||
override fun getFooBar(): String? {
|
||||
<selection><caret>return super<Intf>.getFooBar()</selection>
|
||||
<selection><caret>return super.getFooBar()</selection>
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user