mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 01:09:46 +07:00
9 lines
174 B
Java
9 lines
174 B
Java
// "Suppress for parameter" "true"
|
|
public class Test {
|
|
private void run(String s<caret>ss) {
|
|
}
|
|
|
|
public static void main(String[] args) {
|
|
new Test().run(null);
|
|
}
|
|
} |