| Index: test_reflectable/test/name_clash_lib.dart
|
| diff --git a/test_reflectable/test/name_clash_lib.dart b/test_reflectable/test/name_clash_lib.dart
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..7afb429127358a53ada7114573a033bd75e9b371
|
| --- /dev/null
|
| +++ b/test_reflectable/test/name_clash_lib.dart
|
| @@ -0,0 +1,16 @@
|
| +// Copyright (c) 2015, the Dart Team. All rights reserved. Use of this
|
| +// source code is governed by a BSD-style license that can be found in
|
| +// the LICENSE file.
|
| +
|
| +library test_reflectable.test.metadata_name_clash_lib;
|
| +
|
| +import "package:reflectable/reflectable.dart";
|
| +
|
| +class Reflector extends Reflectable {
|
| + const Reflector() : super();
|
| +}
|
| +
|
| +const reflector = const Reflector();
|
| +
|
| +@reflector
|
| +class C {}
|
|
|