1 // PR 100
2 
3 // Second call to hashcode causes SEGV when dynamically linking.
4 
5 public class pr100
6 {
main(String[] args)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 }
14