JavaPatternMatching/bin/mycompiler/test/lambda/GenericParameterTest.jav

7 lines
96 B
Plaintext
Raw Normal View History

2014-02-05 12:38:34 +00:00
class GenericVarTest{
Vector<? extends Object> test;
method(){
test = test;
return 1;
}
}