bearophile Wrote:
> errors will be found
> often hide bugs
> situations like x=x; reveal true bugs like:
>
> class Foo {
> int x, y;
> this(int x_, int y_) {
> this.x = x;
> y = y;
>
> }
> }
> void main() {}
Yes, fields and locals in camelCase is a bug.