ccb380117c
Change-Id: Iac6e6f6e6fbd6b426398f0fca954d8a73cfcb2eb Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/150844 Auto-Submit: Bob Nystrom <rnystrom@google.com> Commit-Queue: Srujan Gaddam <srujzs@google.com> Reviewed-by: Srujan Gaddam <srujzs@google.com>
39 lines
542 B
Dart
39 lines
542 B
Dart
// Copyright (c) 2019, 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.
|
|
|
|
@Meta({})
|
|
import 'dart:core';
|
|
|
|
@Meta({})
|
|
void f(@Meta({}) int foo) {}
|
|
|
|
@Meta({})
|
|
class A<@Meta({}) T> {
|
|
@Meta({})
|
|
String? x, y;
|
|
|
|
@Meta({})
|
|
A();
|
|
|
|
@Meta({})
|
|
void m() {
|
|
@Meta({})
|
|
int z;
|
|
}
|
|
}
|
|
|
|
@Meta({})
|
|
enum E {
|
|
@Meta({})
|
|
v
|
|
}
|
|
|
|
class Meta {
|
|
final Set<int> value;
|
|
|
|
const Meta(this.value);
|
|
}
|
|
|
|
main() {}
|