File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
java/ql/test/kotlin/library-tests/inherited-callee Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ open class TestKt {
4
4
5
5
}
6
6
7
- interface ParentIf {
7
+ interface ParentIfK {
8
8
9
9
fun inheritedInterfaceMethodK ()
10
10
11
11
}
12
12
13
- interface ChildIf : ParentIf {
13
+ interface ChildIfK : ParentIfK {
14
14
15
15
16
16
}
@@ -24,7 +24,7 @@ class ChildKt : TestKt() {
24
24
c.equals(c)
25
25
c.hashCode()
26
26
c.inheritMe()
27
- val c2: ParentIf ? = null
27
+ val c2: ParentIfK ? = null
28
28
c2?.inheritedInterfaceMethodK()
29
29
30
30
}
Original file line number Diff line number Diff line change 7
7
| Test.kt:24:7:24:15 | equals(...) | equals | Object |
8
8
| Test.kt:25:7:25:16 | hashCode(...) | hashCode | Object |
9
9
| Test.kt:26:7:26:17 | inheritMe(...) | inheritMe | TestKt |
10
- | Test.kt:28:9:28:35 | inheritedInterfaceMethodK(...) | inheritedInterfaceMethodK | ParentIf |
10
+ | Test.kt:28:9:28:35 | inheritedInterfaceMethodK(...) | inheritedInterfaceMethodK | ParentIfK |
You can’t perform that action at this time.
0 commit comments