You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TTT.java 295B

1234567891011
  1. import java.util.*;
  2. public class TTT {
  3. public void foo() {
  4. System.err.println("Creating Test<Integer> instance");
  5. Test<Integer> mt = new Test<Integer>();
  6. System.err.println("Calling toArray");
  7. Integer[] arr = mt.toArray(new Integer[]{});
  8. System.err.println("done");
  9. }
  10. }