mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
10 lines
146 B
Java
10 lines
146 B
Java
class Main {
|
|
{
|
|
bar(ge<caret>t());
|
|
}
|
|
|
|
static void bar(Object... o) {}
|
|
static <T> T get() {
|
|
return (T) null;
|
|
}
|
|
} |