mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
16 lines
254 B
Java
16 lines
254 B
Java
public class NotRaw<T> {
|
|
T g<caret>et(T t){
|
|
T tt = t;
|
|
if ( t == null) {
|
|
return null;
|
|
} else
|
|
return null;
|
|
}
|
|
|
|
}
|
|
|
|
class Raw extends NotRaw {
|
|
void foo() {
|
|
Object o = get(null);
|
|
}
|
|
} |