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

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

Issue 9621015: Multitest annotations now accept multiple annotations on one line. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: none outcome is now empty set 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
Index: tests/language/src/TypeVariableBoundsTest.dart
diff --git a/tests/language/src/TypeVariableBoundsTest.dart b/tests/language/src/TypeVariableBoundsTest.dart
index 11e912f3224f5a09f43326c794fa522e69ac8db2..0cc71c379680dcc0964984d38813bae657cad8d9 100644
--- a/tests/language/src/TypeVariableBoundsTest.dart
+++ b/tests/language/src/TypeVariableBoundsTest.dart
@@ -19,7 +19,7 @@ interface IFoo<T extends num> default Foo<T extends num> {
// String is not assignable to num.
class Baz
- extends Foo<String> /// 01: dynamic type error
+ extends Foo<String> /// 01: static type error, dynamic type error
{}
class Biz extends Foo<int> {}
@@ -44,7 +44,7 @@ class Box<T> {
main() {
// String is not assignable to num.
- var v1 = new Foo<String>(); /// 05: dynamic type error
+ var v1 = new Foo<String>(); /// 05: static type error, dynamic type error
// String is not assignable to num.
Foo<String> v2 = null; /// 06: static type error

Powered by Google App Engine
This is Rietveld 408576698