II.java: New file.

* libjava.lang/II.java: New file.
* libjava.lang/II.out: New file.

From-SVN: r43744
This commit is contained in:
Jeff Sturm 2001-07-03 23:52:27 +00:00 committed by Jeff Sturm
parent 9be7529dbb
commit 38733dbb29
3 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,16 @@
public class II {
{
System.out.println("ii");
}
public II()
{
}
public II(int x)
{
this();
}
public static void main(String[] args)
{
new II(0);
}
}