7 lines
96 B
Plaintext
7 lines
96 B
Plaintext
|
class GenericVarTest{
|
||
|
Vector<? extends Object> test;
|
||
|
method(){
|
||
|
test = test;
|
||
|
return 1;
|
||
|
}
|
||
|
}
|