Index: tests/lib_strong/mirrors/generic_method_test.dart |
diff --git a/tests/lib_strong/mirrors/generic_method_test.dart b/tests/lib_strong/mirrors/generic_method_test.dart |
deleted file mode 100644 |
index fb82bbfb79942551e4fce8e2e6991d1f98b0d74b..0000000000000000000000000000000000000000 |
--- a/tests/lib_strong/mirrors/generic_method_test.dart |
+++ /dev/null |
@@ -1,15 +0,0 @@ |
-// Copyright (c) 2017, 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. |
- |
-import 'dart:mirrors'; |
-import 'package:expect/expect.dart'; |
- |
-class Foo { |
- T bar<T>() => null; |
-} |
- |
-void main() { |
- var type = reflectClass(Foo); |
- Expect.isTrue(type.declarations.keys.contains(#bar)); |
-} |