source: trunk/gcc/libjava/testsuite/libjava.lang/klass.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: 223 bytes
Line 
1public class klass
2{
3 public static void main (String[] args)
4 {
5 Class ic1 = Integer.TYPE;
6 int[] foo = new int[3];
7 Class ic2 = foo.getClass().getComponentType();
8 System.out.println(ic1.equals(ic2));
9 }
10}
Note: See TracBrowser for help on using the repository browser.