Go to (show) implementations: skip light methods that are generated with DELEGATION or DELEGATION_TO_DEFAULT_IMPLS JvmDeclarationOriginKind
Add some unrelated tests for fake overrides
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
package testing
|
||||
|
||||
interface I {
|
||||
fun <caret>f() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
class A(i: I) : I by i
|
||||
|
||||
class B(i: I) : I by i {
|
||||
override fun f() {
|
||||
}
|
||||
}
|
||||
|
||||
class C(i: I) : I by i
|
||||
|
||||
// REF: (in testing.B).f()
|
||||
|
||||
Reference in New Issue
Block a user