| Index: tests/language_strong/deferred_load_constants_test.dart
|
| diff --git a/tests/language_strong/deferred_load_constants_test.dart b/tests/language_strong/deferred_load_constants_test.dart
|
| index 860e66ce25ddf09abb5b4a54e3682b76d20c7148..2d795f431b93ac580083f5e02c132dc929d94a99 100644
|
| --- a/tests/language_strong/deferred_load_constants_test.dart
|
| +++ b/tests/language_strong/deferred_load_constants_test.dart
|
| @@ -24,11 +24,11 @@ main() {
|
| Expect.identical(toplevel, foo.toplevel);
|
| Expect.identical(C.staticfun, foo.C.staticfun);
|
| // Access through deferred prefix is not a constant expression.
|
| - Expect.throws(() => const [foo.c]); /// 01: compile-time error
|
| - Expect.throws(() => const [foo.C]); /// 02: compile-time error
|
| - Expect.throws(() => const [foo.funtype]); /// 03: compile-time error
|
| - Expect.throws(() => const [foo.toplevel]); /// 04: compile-time error
|
| - Expect.throws(() => const [foo.C.staticfun]); /// 05: compile-time error
|
| + Expect.throws(() => const [foo.c]); // /// 01: compile-time error
|
| + Expect.throws(() => const [foo.C]); // /// 02: compile-time error
|
| + Expect.throws(() => const [foo.funtype]); // /// 03: compile-time error
|
| + Expect.throws(() => const [foo.toplevel]); // /// 04: compile-time error
|
| + Expect.throws(() => const [foo.C.staticfun]); // /// 05: compile-time error
|
|
|
| asyncEnd();
|
| });
|
|
|