blob: 79af7c95860b52ba64129da5d91fa19e06cd902f [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 It is a syntax error if a built-in identifier is used as the
/// declared name of a prefix, class, mixin, enum, type parameter, type alias,
/// or extension.
///
/// @description Checks that it is a compile-time error if a built-in identifier
/// `typedef` is used as the declared name of a type variable.
/// @author rodionov
class C<typedef> {
// ^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
mixin M<typedef> {
// ^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
}
enum E<typedef> {
// ^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
e1;
}
void foo<typedef>() {}
// ^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
extension Ext<typedef> on List {}
// ^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
typedef int F1<typedef>();
// ^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
typedef F2<typedef extends Comparable<augment>> = int Function();
// ^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
const void Function<typedef>()? c = null;
// ^^^^^^^
// [analyzer] unspecified
// [cfe] unspecified
main() {
print(C);
print(M);
print(E);
print(foo);
print(List);
print(F1);
print(F2);
print(c);
}