mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-13 11:20:12 +07:00
19 lines
203 B
Java
19 lines
203 B
Java
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);
|
|
}
|
|
|
|
|
|
} |