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

Unified Diff: tests/language_strong/scope_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_strong/scope_variable_test.dart
diff --git a/tests/language_strong/scope_variable_test.dart b/tests/language_strong/scope_variable_test.dart
index 58ae9105d586fda90bc8f48ed2c8586a67ad3c83..ad18de2614e4e15bfc0ae28974385efd627fc250 100644
--- a/tests/language_strong/scope_variable_test.dart
+++ b/tests/language_strong/scope_variable_test.dart
@@ -35,7 +35,7 @@ int testShadowingAfterUse() {
var c = a; // Use of 'a' prior to its shadow declaration below.
var d = b + c;
// Shadow declaration of 'a'.
- var a = 5; /// 01: compile-time error
+ var a = 5; //# 01: compile-time error
return d + a;
}
}

Powered by Google App Engine
This is Rietveld 408576698