Details
-
Improvement
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
The following should barf
x = 1 y = 2
we should enforce ; to separate statements on 1 line. e.g.
x = 1; y = 2
also using ; or newline as a separator will help us make field declarations clear
class Foo
{ int x; y }or
class Foo {
int x
y
}