mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
14 lines
195 B
Java
14 lines
195 B
Java
class C {
|
|
<caret>C(String name){}
|
|
}
|
|
|
|
class Usage {
|
|
void foo() {
|
|
C c1 = new C("1");
|
|
C c2 = new C("2");
|
|
}
|
|
|
|
void bar() {
|
|
C c1 = new C("1"), c2 = new C("2");
|
|
}
|
|
} |