mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
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")
|
|
}
|
|
} |