| Index: tests/language/deferred_load_constants_test.dart
|
| diff --git a/tests/language/deferred_load_constants_test.dart b/tests/language/deferred_load_constants_test.dart
|
| index 860e66ce25ddf09abb5b4a54e3682b76d20c7148..a65b558120b5fb3830da64a57055407ce447526e 100644
|
| --- a/tests/language/deferred_load_constants_test.dart
|
| +++ b/tests/language/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();
|
| });
|
|
|