pr100.java
Upload User: fbh598
Upload Date: 2007-07-05
Package Size: 5960k
Code Size: 0k
Category:

Java Develop

Development Platform:

Unix_Linux

  1. // PR 100
  2. // Second call to hashcode causes SEGV when dynamically linking.
  3. public class pr100
  4. {
  5.     public static void main(String[] args) {
  6. pr100 ht = new pr100();
  7. System.err.println(ht.hashCode());
  8. System.err.println(ht.getClass().hashCode());
  9.     }
  10. }