mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
11 lines
143 B
Java
11 lines
143 B
Java
// "Make 'inner' static" "false"
|
|
import java.io.*;
|
|
|
|
class a {
|
|
void foo() {
|
|
class inner {
|
|
<caret>static class nested {}
|
|
}
|
|
}
|
|
}
|