-
Bug
-
Resolution: Done
-
Major
-
3.0.17, 4.0.10
-
None
The following expression fails to parse
System.out.println("Loader of Foo.class is " + Foo.class.getClassLoader());
Bracketing the class literal makes it owrk
System.out.println("Loader of Foo.class is " + (Foo.class).getClassLoader());