source: trunk/gcc/libjava/testsuite/libjava.lang/II.java

Last change on this file was 2, checked in by bird, 22 years ago

Initial revision

  • Property cvs2svn:cvs-rev set to 1.1
  • Property svn:eol-style set to native
  • Property svn:executable set to *
File size: 183 bytes
Line 
1public class II {
2 {
3 System.out.println("ii");
4 }
5 public II()
6 {
7 }
8 public II(int x)
9 {
10 this();
11 }
12 public static void main(String[] args)
13 {
14 new II(0);
15 }
16}
Note: See TracBrowser for help on using the repository browser.