mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-29 08:20:55 +07:00
12 lines
208 B
Java
12 lines
208 B
Java
// "Create method 'get'" "true"
|
|
class Generic<T> {
|
|
public T get() {
|
|
<caret><selection>return null;</selection>
|
|
}
|
|
}
|
|
|
|
class WWW {
|
|
<E> void foo (Generic<E> p) {
|
|
E e = p.get();
|
|
}
|
|
} |