blob: a9f3685cf4a548c5f13434a2a4b3bbac4ed790bb [file] [log] [blame]
// 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());
}
}