source: trunk/gcc/libjava/testsuite/libjava.lang/pr100.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: 261 bytes
Line 
1// PR 100
2
3// Second call to hashcode causes SEGV when dynamically linking.
4
5public class pr100
6{
7 public static void main(String[] args) {
8 pr100 ht = new pr100();
9
10 System.err.println(ht.hashCode());
11 System.err.println(ht.getClass().hashCode());
12 }
13}
Note: See TracBrowser for help on using the repository browser.