mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
14 lines
269 B
Java
14 lines
269 B
Java
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 ();
|
|
}
|
|
} |