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

Unified Diff: tests/language/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
« no previous file with comments | « tests/language/rewrite_implicit_this_test.dart ('k') | tests/language/setter_no_getter_call_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/scope_variable_test.dart
diff --git a/tests/language/scope_variable_test.dart b/tests/language/scope_variable_test.dart
index d731cdf658698e0c506a47cbc37a6ad3cf526491..e1e18189ea65a3fa15a1abb4c082a19733614b76 100644
--- a/tests/language/scope_variable_test.dart
+++ b/tests/language/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/rewrite_implicit_this_test.dart ('k') | tests/language/setter_no_getter_call_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698