-
Enhancement
-
Resolution: Fixed
-
P4
-
5.0
-
b49
-
generic
-
generic
Annotations are a new language feature in Tiger available when using "-source 1.5". The annotation syntax uses an at sign, "@", which didn't often appear in Java source previously. In Tiger javac defaults to "source 1.4" so annotations cannot be used. However, the current javac error for using annotations in source 1.4 code is somewhat cryptic; e.g.
StaticFieldAnnotations.java:5: illegal character: \64
@MySimple("value") @MyMarker
^
This error message could be enhanced to mention annotations and source 1.5.
StaticFieldAnnotations.java:5: illegal character: \64
@MySimple("value") @MyMarker
^
This error message could be enhanced to mention annotations and source 1.5.