mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-24 05:19:13 +08:00
17 lines
183 B
Java
17 lines
183 B
Java
public class II {
|
|
{
|
|
System.out.println("ii");
|
|
}
|
|
public II()
|
|
{
|
|
}
|
|
public II(int x)
|
|
{
|
|
this();
|
|
}
|
|
public static void main(String[] args)
|
|
{
|
|
new II(0);
|
|
}
|
|
}
|