aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bugs150/pr114343/case2/Test.java
blob: 758094997417947dc84bf008e7136e10d90e6266 (plain)
1
2
3
4
5
6
7
8
9
10
11
import java.util.*;

public class Test<T> {

	Set<T> set = new HashSet<T>();

	public <T> T[] toArray(T[] a) {
    System.err.println("In toArray()");
		return set.toArray(a);
	}
}