mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-04 20:30:42 +07:00
14 lines
169 B
Java
14 lines
169 B
Java
// "Fix the typo 'ne' to 'new'" "true-preview"
|
|
public class Main {
|
|
|
|
static void call(A a) {
|
|
|
|
}
|
|
|
|
static class A{}
|
|
static void test2() {
|
|
call(new A());
|
|
}
|
|
}
|
|
|