Skip to content

Commit

Permalink
#2339. Add test for extension named type and a record type (#2366)
Browse files Browse the repository at this point in the history
Add test for extension named `type` and a record type
  • Loading branch information
sgrekhov authored Nov 10, 2023
1 parent 306f82e commit 36f6ee9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions LanguageFeatures/Extension-methods/syntax_t07.dart
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
// Copyright (c) 2023, 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 an extension declaration is a top-level declaration with a grammar
/// similar to:
/// <extension> ::=
/// `extension' <identifier>? <typeParameters>? `on' <type> `?'? `{'
/// memberDeclaration*
/// `}'
/// Such a declaration introduces its name (the identifier) into the surrounding
/// scope
///
/// @description Check that it is a compile-time error if an extension has the
/// name `type`. Test record type
/// @author [email protected]
extension type on (int i,) {}
// ^
// [analyzer] unspecified
// [cfe] unspecified

main() {
print((int,));
}

0 comments on commit 36f6ee9

Please sign in to comment.