mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-02-07 19:36:56 +07:00
14 lines
222 B
Plaintext
14 lines
222 B
Plaintext
public class NotRaw<T> {
|
|
|
|
}
|
|
|
|
class Raw extends NotRaw {
|
|
void foo() {
|
|
Object o;
|
|
Object tt = null;
|
|
if ( null == null) {
|
|
o = null;
|
|
} else
|
|
o = null;
|
|
}
|
|
} |