mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-19 23:19:40 +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);
|
||
|
}
|
||
|
}
|