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 - AssertionError at com.sun.tools.javac.util.Assert.error
Summary: AssertionError at com.sun.tools.javac.util.Assert.error
Status: NEW
Alias: None
Product: java
Classification: Unclassified
Component: Compiler (show other bugs)
Version: 8.1
Hardware: All All
: P3 normal (vote)
Assignee: Dusan Balek
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-06-01 13:29 UTC by Jiri Prox
Modified: 2015-06-15 05:16 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter: 217662


Attachments
stacktrace (2.35 KB, text/plain)
2015-06-01 13:29 UTC, Jiri Prox
Details
Dump file (6.72 KB, application/octet-stream)
2015-06-01 13:30 UTC, Jiri Prox
Details
stacktrace (2.31 KB, text/plain)
2015-06-15 05:16 UTC, Jan Lahoda
Details

Note You need to log in before you can comment on or make changes to this bug.
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) {
    }

}
---