mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
15 lines
264 B
Plaintext
15 lines
264 B
Plaintext
public class NotRaw<T> {
|
|
|
|
}
|
|
|
|
class Raw extends NotRaw {
|
|
void foo() {
|
|
Object result;
|
|
Object tt = null;
|
|
if ( null == null) {
|
|
result = null;
|
|
} else
|
|
result = null;
|
|
Object o = result;
|
|
}
|
|
} |