mirror of
https://github.com/gcc-mirror/gcc.git
synced 2026-05-06 23:25:24 +02:00
14 lines
261 B
Java
14 lines
261 B
Java
|
|
// 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());
|
||
|
|
}
|
||
|
|
}
|