mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +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;
|
|
}
|
|
} |