This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 252722

Summary: AssertionError at com.sun.tools.javac.util.Assert.error
Product: java Reporter: Jiri Prox <jiriprox>
Component: CompilerAssignee: Dusan Balek <dbalek>
Status: NEW ---    
Severity: normal CC: jlahoda
Priority: P3    
Version: 8.1   
Hardware: All   
OS: All   
Issue Type: DEFECT Exception Reporter: 217662
Attachments: stacktrace
Dump file
stacktrace

Description Jiri Prox 2015-06-01 13:29:15 UTC
Build: NetBeans IDE Dev (Build 20150601-9b36ac08d2ea)
VM: Java HotSpot(TM) 64-Bit Server VM, 25.45-b02, Java(TM) SE Runtime Environment, 1.8.0_45-b14
OS: Windows 7

User Comments:
jiriprox: AE when invoking Go to Symbol




Stacktrace: 
java.lang.AssertionError
   at com.sun.tools.javac.util.Assert.error(Assert.java:155)
   at com.sun.tools.javac.util.Assert.checkNonNull(Assert.java:62)
   at com.sun.tools.javac.comp.Attr.fromAnnotations(Attr.java:4238)
   at com.sun.tools.javac.comp.Attr.access$500(Attr.java:78)
   at com.sun.tools.javac.comp.Attr$14.run(Attr.java:4224)
   at com.sun.tools.javac.comp.Annotate.flush(Annotate.java:161)
Comment 1 Jiri Prox 2015-06-01 13:29:18 UTC
Created attachment 153988 [details]
stacktrace
Comment 2 Jiri Prox 2015-06-01 13:30:57 UTC
Created attachment 153989 [details]
Dump file
Comment 3 Jan Lahoda 2015-06-15 05:16:21 UTC
Created attachment 154214 [details]
stacktrace

jdk9 branch. Happens for this source code:
---
package javaapplication226;

public class JavaApplication226 {

    p

    @Deprecated
    public static void main(String[] args) {
    }

}
---