Details
-
Bug
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
1.0-JSR-1
-
None
-
Windows XP
Description
class SampleClass {
firstField;
secondField;
public void SampleClass(String name)
{ firstField = name; }}
When compiled, produces 'unexpected token, firstField'. adding
@property firstField;
or
String firstField;
solves the problem (but just produces an error for secondField);