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

Unified Diff: tests/language_strong/scope_variable_test.dart

Issue 2774783002: Re-land "Format all multitests" (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 21b2bdd6622951fdd88905a1794e35e563e05600..52c4b8d9a6cdd14f1c78bd97c3844a459f47916c 100644
--- a/tests/language_strong/scope_variable_test.dart
+++ b/tests/language_strong/scope_variable_test.dart
@@ -32,7 +32,7 @@ int testShadowingAfterUse() {
var a = 1;
{
var b = 2;
- var c = a; // Use of 'a' prior to its shadow declaration below.
+ 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
« no previous file with comments | « tests/language_strong/rewrite_implicit_this_test.dart ('k') | tests/language_strong/setter_no_getter_call_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698