blob: b4122b7efb0d7bd61821beb9b17061c4e243e07e [file] [log] [blame] [edit]
// Copyright (c) 2013, 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.
// Regression test for the combined use of meta-targets and static fields with
// annotations.
import 'dart:mirrors';
class A {
@reflectable
var reflectableField = 0;
@UsedOnlyAsMetadata()
var unreflectableField = 1;
@reflectable
static var reflectableStaticField = 2;
@UsedOnlyAsMetadata()
static var unreflectableStaticField = 3;
}
class Reflectable {
const Reflectable();
}
const Reflectable reflectable = const Reflectable();
class UsedOnlyAsMetadata {
const UsedOnlyAsMetadata();
}
void main() {
print(A());
}