blob: b595925f64ad577c52a433b104fb11d5f38a6b0b [file] [log] [blame]
// Copyright (c) 2014, 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 issue 20776. Tests that the needed classes for the
// constant map in the metadata are generated.
library lib;
import 'dart:mirrors';
class C {
final x;
const C(this.x);
}
@C(const {'foo': 'bar'})
class A {}
main() {
print(reflectClass(A).metadata);
}