blob: 2163b525b0327d63882e0fca5bb7be536a79e451 [file] [log] [blame]
import java.util.*;
public class Test<T>
{
List<Collection<T>> getList ()
{
return new ArrayList<Collection<T>> ();
}
public void test2 (Test<?> arg)
{
final List<? extends Collection<?>> collection = result;
collection = arg.getList ();
}
}