| Index: test/codegen/lib/mirrors/no_metadata_test.dart
|
| diff --git a/test/codegen/language/regress_13462_0_test.dart b/test/codegen/lib/mirrors/no_metadata_test.dart
|
| similarity index 74%
|
| copy from test/codegen/language/regress_13462_0_test.dart
|
| copy to test/codegen/lib/mirrors/no_metadata_test.dart
|
| index b87bf1f24d7378ea99edd41562464cc8f67ffed6..f5c0747a59928a9d4a8c29bc82bedf659940c368 100644
|
| --- a/test/codegen/language/regress_13462_0_test.dart
|
| +++ b/test/codegen/lib/mirrors/no_metadata_test.dart
|
| @@ -4,6 +4,11 @@
|
|
|
| import 'dart:mirrors';
|
|
|
| +import 'stringify.dart';
|
| +
|
| +class Foo {
|
| +}
|
| +
|
| main() {
|
| - print(MirrorSystem.getName(#foo));
|
| + expect('[]', reflectClass(Foo).metadata);
|
| }
|
|
|