Index: pkg/analyzer/test/src/summary/resynthesize_common.dart |
diff --git a/pkg/analyzer/test/src/summary/resynthesize_common.dart b/pkg/analyzer/test/src/summary/resynthesize_common.dart |
index aeebef56cdca03312352a3af89f60571ac764202..5f1d5e997377157e1939616c3ce244359d767a19 100644 |
--- a/pkg/analyzer/test/src/summary/resynthesize_common.dart |
+++ b/pkg/analyzer/test/src/summary/resynthesize_common.dart |
@@ -3574,10 +3574,14 @@ C c; |
'''); |
} |
- test_instantiateToBounds_boundRefersToItself() { |
+ solo_test_instantiateToBounds_boundRefersToItself() { |
Brian Wilkerson
2016/09/29 20:39:09
Remove "solo_".
Jennifer Messerly
2016/09/30 00:22:38
remove "solo_"?
|
checkLibrary(''' |
-class C<T extends C<T>> {} |
+class C<T extends C<int>> {} |
C c; |
+var c2 = new C(); |
+class B { |
+ var c3 = new C(); |
+} |
'''); |
} |