Inspection & fix for redundant supertype qualification
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
open class B {
|
||||
open val v: Int = 0
|
||||
}
|
||||
|
||||
interface I {
|
||||
val v: Int
|
||||
}
|
||||
|
||||
class A : B(), I {
|
||||
override val v: Int
|
||||
get() = super<caret><B>.v
|
||||
}
|
||||
Reference in New Issue
Block a user