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

Unified Diff: tests/language/mixin_type_variable_test.dart

Issue 2765693002: Update all tests (Closed)
Patch Set: Created 3 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/mixin_type_variable_test.dart
diff --git a/tests/language/mixin_type_variable_test.dart b/tests/language/mixin_type_variable_test.dart
index 4d5c6c4bea36c28aa0269c1f2eb7a5ab8212c5f4..971b464118f4a87b626d842f2fe36ac6cc3005cd 100644
--- a/tests/language/mixin_type_variable_test.dart
+++ b/tests/language/mixin_type_variable_test.dart
@@ -10,23 +10,23 @@ class A<T> {
class B<T> = Object with A<T>;
-class C<T> extends B<T> {} /// 03: ok
-class D extends B<int> {} /// 04: ok
+class C<T> extends B<T> {} //# 03: ok
+class D extends B<int> {} //# 04: ok
class E = Object with A<int>;
-class F extends E {} /// 06: ok
+class F extends E {} //# 06: ok
-class G<T> extends Object with A<T> {} /// 07: ok
-class H extends Object with A<int> {} /// 08: ok
+class G<T> extends Object with A<T> {} //# 07: ok
+class H extends Object with A<int> {} //# 08: ok
void main() {
- new A<num>(); /// 01: ok
- new B<num>(); /// 02: ok
- new C<num>(); /// 03: continued
- new D(); /// 04: continued
- new E(); /// 05: ok
- new F(); /// 06: continued
- new G<num>(); /// 07: continued
- new H(); /// 08: continued
+ new A<num>(); //# 01: ok
+ new B<num>(); //# 02: ok
+ new C<num>(); //# 03: continued
+ new D(); //# 04: continued
+ new E(); //# 05: ok
+ new F(); //# 06: continued
+ new G<num>(); //# 07: continued
+ new H(); //# 08: continued
}

Powered by Google App Engine
This is Rietveld 408576698