mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
[java-slices] Avoid walking through inheritance when starting from parameter (IDEA-154777)
GitOrigin-RevId: 327559f0649b3bb66b04b056627966b6a0e1618f
This commit is contained in:
committed by
intellij-monorepo-bot
parent
090b19388c
commit
19141f3dbc
@@ -0,0 +1,17 @@
|
||||
interface JavaInterface {
|
||||
void foo(Object <caret>p);
|
||||
}
|
||||
|
||||
class JavaClass1 implements JavaInterface {
|
||||
@Override
|
||||
public void foo(Object p) {
|
||||
System.out.println(<flown1>p);
|
||||
}
|
||||
}
|
||||
|
||||
class JavaClass2 implements JavaInterface {
|
||||
@Override
|
||||
public void foo(Object p) {
|
||||
System.err.println(<flown2>p);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user