mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
Added support for java and kt usages KTIJ-21819 IDEA-294547 GitOrigin-RevId: 5bf947ecd97ba1ec106adbb9469307a51cc9508c
12 lines
205 B
Java
12 lines
205 B
Java
class A {
|
|
public int foo(A a) {
|
|
return 0;
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
A a1 = new A();
|
|
int a = a1.f<caret>oo(new A() {
|
|
public int foo(A a) { return 1; }
|
|
});
|
|
}
|
|
} |