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

Unified Diff: tests/language/compile_time_constant_checked2_test.dart

Issue 150223002: Add 'static type error' tags to multitests. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rename 'static type error' to 'checked mode compile-time error'. Created 6 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 | « no previous file | tests/language/compile_time_constant_checked3_test.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/language/compile_time_constant_checked2_test.dart
diff --git a/tests/language/compile_time_constant_checked2_test.dart b/tests/language/compile_time_constant_checked2_test.dart
index 517dfc080d50675915f6dea06b9a1570ea8f4341..52cfc413cf33a3440f57094b1c8fad79f07adae6 100644
--- a/tests/language/compile_time_constant_checked2_test.dart
+++ b/tests/language/compile_time_constant_checked2_test.dart
@@ -12,12 +12,12 @@ class A {
const A.a6(int x) : this.x = x;
}
-const a1 = const A.a1(); /// 01: static type warning, compile-time error
-const a2 = const A.a2('foo'); /// 02: static type warning, compile-time error
-const a3 = const A.a3(); /// 03: static type warning, compile-time error
-const a4 = const A.a4('foo'); /// 04: static type warning, compile-time error
-const a5 = const A.a5('foo'); /// 05: static type warning, compile-time error
-const a6 = const A.a6('foo'); /// 06: static type warning, compile-time error
+const a1 = const A.a1(); /// 01: static type warning, checked mode compile-time error
+const a2 = const A.a2('foo'); /// 02: static type warning, checked mode compile-time error
+const a3 = const A.a3(); /// 03: static type warning, checked mode compile-time error
+const a4 = const A.a4('foo'); /// 04: static type warning, checked mode compile-time error
+const a5 = const A.a5('foo'); /// 05: static type warning, checked mode compile-time error
+const a6 = const A.a6('foo'); /// 06: static type warning, checked mode compile-time error
main() {
print(a1); /// 01: continued
« no previous file with comments | « no previous file | tests/language/compile_time_constant_checked3_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698