mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
GitOrigin-RevId: 370f0584ecdc2e6229db59d3493b6faba1a04e1d
9 lines
88 B
Java
9 lines
88 B
Java
class Test {
|
|
private static int count = 0;
|
|
|
|
public Test() {
|
|
count = count + 1;
|
|
}
|
|
|
|
}
|