Duplicate :
|
|
Relates :
|
|
Relates :
|
compile this code with the -g option: class Test { void m(Object o) { if (o != null) { Object notUsed; Object used; if (o != null) { final Object finalLocal = null; used = null; if (o == null) {} } } } } javac crashes with an assertion error.
|