pr100.java 261 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
// PR 100

// Second call to hashcode causes SEGV when dynamically linking.

public class pr100
{
    public static void main(String[] args) {
	pr100 ht = new pr100();
	
	System.err.println(ht.hashCode());
	System.err.println(ht.getClass().hashCode());
    }
}