Files
sdk/pkg/front_end/testcases/metadata_enum.dart
T
Konstantin Shcheglov 329523060f Parse annotations for enums and named mixin applications.
R=ahe@google.com, paulberry@google.com, sigmund@google.com

Bug:
Change-Id: Iadc4de193176be22ea0af8f371f578df938b423c
Reviewed-on: https://dart-review.googlesource.com/6167
Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
Reviewed-by: Sigmund Cherem <sigmund@google.com>
2017-09-15 23:27:08 +00:00

11 lines
270 B
Dart

// Copyright (c) 2017, 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.
const a = null;
@a
enum E { E1, E2, E3 }
main() {}