blob: 43b7388f3c818a4c222fe8897914df389019b0f2 [file] [log] [blame]
// 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.
// @dart = 2.9
// Regression test for the combined use of metatargets and static fields with
// annotations.
import 'dart:mirrors';
class A {
@reflectable
var reflectableField = 0; //# 01: ok
@UsedOnlyAsMetadata()
var unreflectableField = 1; //# 02: ok
@reflectable
static var reflectableStaticField = 2; //# 03: ok
@UsedOnlyAsMetadata()
static var unreflectableStaticField = 3;
}
class Reflectable {
const Reflectable();
}
const Reflectable reflectable = const Reflectable();
class UsedOnlyAsMetadata {
const UsedOnlyAsMetadata();
}
void main() {
print(new A());
}