re PR libgcj/17536 (wrong ClassLoader for int[])

PR libgcj/17536:
	* testsuite/libjava.lang/pr17536.java: New file.
	* testsuite/libjava.lang/pr17536.out: New file.

From-SVN: r100999
This commit is contained in:
Tom Tromey 2005-06-15 22:36:01 +00:00 committed by Tom Tromey
parent aaffb27ea5
commit f652253b03
3 changed files with 12 additions and 0 deletions

View file

@ -0,0 +1,5 @@
public class pr17536 {
public static void main(String[] args) {
System.out.println(int[].class.getClassLoader());
}
}