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

Unified Diff: tests/language/final_variable_assignment_test.dart

Issue 22914028: Update test for assignment to final variables (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Removed final_var_negative_test.dart Created 7 years, 4 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/final_var_negative_test.dart ('k') | tests/language/language.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/final_variable_assignment_test.dart
diff --git a/tests/language/final_variable_assignment_test.dart b/tests/language/final_variable_assignment_test.dart
index f173747ef8f511b8c53e82e9be95266bc4c9253b..f195c7566ad88dfc2ad8219917e213b1ea06db5d 100644
--- a/tests/language/final_variable_assignment_test.dart
+++ b/tests/language/final_variable_assignment_test.dart
@@ -6,8 +6,8 @@
main() {
final x = 30;
- x = 0; /// 01: compile-time error
- x += 1; /// 02: compile-time error
- ++x; /// 03: compile-time error
- x++; /// 04: compile-time error
+ x = 0; /// 01: static type warning, runtime error
+ x += 1; /// 02: static type warning, runtime error
+ ++x; /// 03: static type warning, runtime error
+ x++; /// 04: static type warning, runtime error
}
« no previous file with comments | « tests/language/final_var_negative_test.dart ('k') | tests/language/language.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698