e6ffc0b285
E.g. "var = 42;" now has a different error message than "var default = 42;". Fixes #22553 Change-Id: I58affe988569d8e79190b63f7267b471a1b0ebc8 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/162182 Commit-Queue: Jens Johansen <jensj@google.com> Reviewed-by: Johnni Winther <johnniwinther@google.com> Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
28 lines
941 B
Dart
28 lines
941 B
Dart
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
|
|
// Test that "class" cannot be used as identifier.
|
|
|
|
class foo {}
|
|
|
|
void main() {
|
|
int class = 10;
|
|
//^^^
|
|
// [analyzer] SYNTACTIC_ERROR.EXPECTED_TOKEN
|
|
// [cfe] Expected ';' after this.
|
|
// ^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.UNDEFINED_IDENTIFIER
|
|
// [cfe] 'class' can't be used as an identifier because it's a keyword.
|
|
// ^^^^^
|
|
// [analyzer] SYNTACTIC_ERROR.EXPECTED_IDENTIFIER_BUT_GOT_KEYWORD
|
|
// [cfe] Setter not found: 'class'.
|
|
print("$class");
|
|
// ^^^^^
|
|
// [analyzer] COMPILE_TIME_ERROR.UNDEFINED_IDENTIFIER
|
|
// [cfe] 'class' can't be used as an identifier because it's a keyword.
|
|
// ^^^^^
|
|
// [analyzer] SYNTACTIC_ERROR.EXPECTED_IDENTIFIER_BUT_GOT_KEYWORD
|
|
// [cfe] Getter not found: 'class'.
|
|
}
|