9ad76fe7bd
The fix includes processing of type parameters elsewhere and also adding support for annotations on extensions. Closes #28981 TEST=existing Change-Id: I71ab5640bd3a16f4a024b6edd047a525eed1c399 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/191404 Commit-Queue: Johnni Winther <johnniwinther@google.com> Reviewed-by: Dmitry Stefantsov <dmitryas@google.com>
13 lines
289 B
Dart
13 lines
289 B
Dart
// Copyright (c) 2021, 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.
|
|
|
|
class A {
|
|
const A();
|
|
}
|
|
|
|
@A()
|
|
extension Extension on int {}
|
|
|
|
main() {}
|