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

Unified Diff: tests/language_2/compile_time_constant_h_test.dart

Issue 2994383002: Migrating block 50, first commit, after tool has run (Closed)
Patch Set: Updated status files based on feedback from whesse Created 3 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
Index: tests/language_2/compile_time_constant_h_test.dart
diff --git a/tests/language/compile_time_constant_h_test.dart b/tests/language_2/compile_time_constant_h_test.dart
similarity index 92%
rename from tests/language/compile_time_constant_h_test.dart
rename to tests/language_2/compile_time_constant_h_test.dart
index 34098826f3e568bc62ef409a8b3fd7c88e61fbbe..f4ba2120ed13bca683246c1a323e4e9684c1e741 100644
--- a/tests/language/compile_time_constant_h_test.dart
+++ b/tests/language_2/compile_time_constant_h_test.dart
@@ -13,7 +13,7 @@ abstract class B {
const factory B(x) = A;
}
-const b1 = const B(499);
+const dynamic b1 = const B(499);
main() {
Expect.equals(499, b1.x);

Powered by Google App Engine
This is Rietveld 408576698