blob: ea272152a6b5a3636874ea998afe2ca9d42a55ca [file] [log] [blame]
// 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.
// @dart = 2.9
/// @assertion variableDeclaration:
/// declaredIdentifier (‘, ’ identifier)*
/// ;
/// declaredIdentifier:
/// metadata finalConstVarOrType identifier
/// ;
/// finalConstVarOrType:
/// final type? |
/// const type? |
/// varOrType
/// ;
/// varOrType:
/// var |
/// type
/// ;
/// initializedVariableDeclaration:
/// declaredIdentifier (‘=’ expression)? (‘, ’ initializedIdentifier)*
/// ;
/// initializedIdentifier:
/// identifier (‘=’ expression)?
/// ;
/// initializedIdentifierList:
/// initializedIdentifier (‘, ’ initializedIdentifier)*
/// ;
/// @description Checks that a variable declaration cannot contain the
/// 'abstract' keyword.
/// @author kaigorodov
/// @reviewer iefremov
class C {
abstract var x = 1;
// ^
// [analyzer] unspecified
// [cfe] unspecified
}
main() {
try {
new C();
} catch (ok) {}
}