mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-20 03:20:56 +07:00
13 lines
226 B
Java
13 lines
226 B
Java
// "Create method 'get'" "true"
|
|
class W<T> {
|
|
public T get(T s) {
|
|
<selection>return null;</selection>
|
|
}
|
|
}
|
|
|
|
class C {
|
|
void foo () {
|
|
W<String> w = new W<String>();
|
|
String s = w.get("");
|
|
}
|
|
} |