II.java: New file.
* libjava.lang/II.java: New file. * libjava.lang/II.out: New file. From-SVN: r43744
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user