*** empty log message ***
From-SVN: r31448
This commit is contained in:
parent
a67861482d
commit
ed4c3661d5
5 changed files with 69 additions and 0 deletions
13
libjava/testsuite/libjava.lang/pr100.java
Normal file
13
libjava/testsuite/libjava.lang/pr100.java
Normal file
|
@ -0,0 +1,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());
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue