Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(576)

Unified Diff: tests/language/src/CyclicTypeVariableTest.dart

Issue 9649015: Change string used to annotate static type issues to 'static type warning' in multitest (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Merged up to tip Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tests/language/src/AssignStaticTypeTest.dart ('k') | tests/language/src/DefaultFactory2Test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/src/CyclicTypeVariableTest.dart
diff --git a/tests/language/src/CyclicTypeVariableTest.dart b/tests/language/src/CyclicTypeVariableTest.dart
index dfcb72839126e685b9c933a9d49271e88dbabad1..a6c247777a1aa9a63e619d842d493b0fea882838 100644
--- a/tests/language/src/CyclicTypeVariableTest.dart
+++ b/tests/language/src/CyclicTypeVariableTest.dart
@@ -9,14 +9,14 @@ class Base<T> {}
class Derived extends Base<Derived> {} // legal
typedef void funcType<T
-extends T /// 01: static type error
+extends T /// 01: static type warning
>(T arg);
class DerivedFunc extends Base<funcType<DerivedFunc>> { }
interface A<S
-extends S /// 02: static type error
+extends S /// 02: static type warning
> {
S field;
}
@@ -26,13 +26,13 @@ interface B<U extends Base<U>> { // legal
}
class C1<V
-extends V /// 03: static type error
+extends V /// 03: static type warning
> {
V field;
}
class C2<V
-extends V /// 04: static type error
+extends V /// 04: static type warning
> implements A<V> {
V field;
}
« no previous file with comments | « tests/language/src/AssignStaticTypeTest.dart ('k') | tests/language/src/DefaultFactory2Test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698