aboutsummaryrefslogtreecommitdiff
path: root/libjava/testsuite/libjava.lang/G19990303_01.java
blob: fc3ca55281c6a07665ece2720e9f850a9bcc80b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
public class G19990303_01
{
  public static void main (String[] args)
  {
    try
      {
	Object[] ar = new String[3];
	String[] as = new String[3];
	System.out.println("1");
	ar[0] = as;
	System.out.println("2");
      }
    catch (Exception _)
      {
	System.out.println("X");
      }
    System.out.println("3");
  }
}