blob: 1d9ee6f79a7e113e04b862f260f9024d925f5872 [file] [log] [blame]
import java.util.*;
public class Test<T>
{
List<Collection<T>> getList ()
{
return new ArrayList<Collection<T>> ();
}
public void test2 (Test<?> arg)
{
res<caret>ult = arg.getList ();
}
}