-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed
Labels
P2A bug or feature request we're likely to work onA bug or feature request we're likely to work onfront-end-fastafront-end-missing-errorlegacy-area-front-endLegacy: Use area-dart-model instead.Legacy: Use area-dart-model instead.
Milestone
Description
It is illegal to write both final
and var
:
final var a = 0;
It is illegal for a final field to not have an initializer and not be initialized in every constructor (if there are no constructors, there is an implicit constructor which has no initializers):
class C {
final a;
}
Both exposed by language_2/field3_test
.
Metadata
Metadata
Assignees
Labels
P2A bug or feature request we're likely to work onA bug or feature request we're likely to work onfront-end-fastafront-end-missing-errorlegacy-area-front-endLegacy: Use area-dart-model instead.Legacy: Use area-dart-model instead.