mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 11:29:28 +07:00
7 lines
176 B
Java
7 lines
176 B
Java
final class MyClass {
|
|
static final int[] arr = {1,2,3};
|
|
|
|
void test() {
|
|
<error descr="Cannot assign a value to final variable 'arr'">arr</error> = new int[] {4};
|
|
}
|
|
} |