mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 05:50:53 +07:00
13 lines
154 B
Java
13 lines
154 B
Java
// "Try to generify 'before1.java'" "true"
|
|
|
|
class c<T> {
|
|
void put(T t ) {
|
|
}
|
|
}
|
|
|
|
class Use {
|
|
void f() {
|
|
c c = new c();
|
|
<caret>c.put("");
|
|
}
|
|
} |