blob: a5443fa6372fb5bfbceca3190de0e08230f58116 [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.
*/
/**
* @assertion "final" is a reserved word.
* A reserved word may not be used as an identifier; it is a compile-time error
* if a reserved word is used where an identifier is expected.
* @description Checks that it is a compile-time error when a reserved word
* "final" is used as a type parameter name.
* @compile-error
* @author rodionov
*/
class A<final> {
bool check(x) => x is final;
}
main() {
new A().check(null);
}