329523060f
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>
11 lines
270 B
Dart
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() {}
|