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
8 lines
151 B
Java
8 lines
151 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());
|
|
}
|
|
} |