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

Unified Diff: tests/compiler/dart2js_extra/basic_class_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/compiler/dart2js_extra/basic_class_test.dart
diff --git a/tests/compiler/dart2js_extra/basic_class_test.dart b/tests/compiler/dart2js_extra/basic_class_test.dart
index 3ed652d10429c052cc33cc1c7491a294e4b83d3f..c694ab6757477c7887ec9fad6ff1115eb03abe7b 100644
--- a/tests/compiler/dart2js_extra/basic_class_test.dart
+++ b/tests/compiler/dart2js_extra/basic_class_test.dart
@@ -17,11 +17,11 @@ void main() {
B b;
a = a;
a = subA;
- a = b; /// 01: static type warning
+ a = b; //# 01: static type warning
subA = a;
subA = subA;
- subA = b; /// 02: static type warning
- b = a; /// 03: static type warning
- b = subA; /// 04: static type warning
+ subA = b; //# 02: static type warning
+ b = a; //# 03: static type warning
+ b = subA; //# 04: static type warning
b = b;
}

Powered by Google App Engine
This is Rietveld 408576698