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

Unified Diff: tests/language/field_optimization3_test.dart

Issue 10693163: Fix type annotation error in test. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/field_optimization3_test.dart
diff --git a/tests/language/field_optimization3_test.dart b/tests/language/field_optimization3_test.dart
index b144d1c186fe6cc0241c79a59e545534c46832a2..b23b0ff57b88da5e33470e96ce9fda695f13f5d9 100644
--- a/tests/language/field_optimization3_test.dart
+++ b/tests/language/field_optimization3_test.dart
@@ -5,8 +5,8 @@
// Dart test program to test type-based optimization on fields.
class A {
- int a = 0;
- int b = 0;
+ var a = 0;
+ var b = 0;
foo() {
var c = b + 27;
for (var i = 0; i < 1 ; i++) {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698