| 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);
|
|
|