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