This commit is contained in:
Dmitry Jemerov
2009-09-10 21:08:51 +04:00
parent 0e77a58da0
commit 5c49d4d458
90 changed files with 6 additions and 0 deletions
@@ -0,0 +1,19 @@
import p.Test;
class Usage {
Test<String> myField;
Test<String> xxx(){
return myField;
}
Test<Integer> xxxxx() {
return null;
}
void bar(Test<String> s) {
s.foo(null);
}
}