Index: tests/lib/mirrors/generic_type_mirror_test.dart |
diff --git a/tests/lib/mirrors/generic_type_mirror_test.dart b/tests/lib/mirrors/generic_type_mirror_test.dart |
index e48892f6b8bde2f3b58c95adf8b0bd941b407125..684f5f366b35682c7118eb01db9ba00b4f377173 100644 |
--- a/tests/lib/mirrors/generic_type_mirror_test.dart |
+++ b/tests/lib/mirrors/generic_type_mirror_test.dart |
@@ -14,8 +14,11 @@ class Foo<W, V> { |
H<V> p() {} |
o(W w) {} |
} |
+ |
class H<T> {} |
+ |
class Bar {} |
+ |
class Baz {} |
void testInstance() { |
@@ -49,7 +52,6 @@ void testInstance() { |
Expect.equals(baz, p.returnType.typeArguments[0]); |
Expect.equals(baz, setter.parameters.single.type); |
- |
} |
void testOriginalDeclaration() { |
@@ -87,4 +89,4 @@ void testOriginalDeclaration() { |
main() { |
testInstance(); |
testOriginalDeclaration(); |
-} |
+} |