mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 02:25:56 +07:00
GitOrigin-RevId: e600dbad74bed7eee0e0979bd1e33a2b7e9870bf
10 lines
162 B
Java
10 lines
162 B
Java
public class Foo {
|
|
private Foo(String s, String s2) {
|
|
this(s + " " + s2);
|
|
}
|
|
private Foo(String s) {}
|
|
|
|
{
|
|
Foo foo = new F<caret>oo("a", "b")
|
|
}
|
|
} |