source: trunk/gcc/libjava/testsuite/libjava.lang/G19990303_01.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: 324 bytes
Line 
1public class G19990303_01
2{
3 public static void main (String[] args)
4 {
5 try
6 {
7 Object[] ar = new String[3];
8 String[] as = new String[3];
9 System.out.println("1");
10 ar[0] = as;
11 System.out.println("2");
12 }
13 catch (Exception _)
14 {
15 System.out.println("X");
16 }
17 System.out.println("3");
18 }
19}
Note: See TracBrowser for help on using the repository browser.