| Index: tests/language_strong/deferred_load_constants.dart | 
| diff --git a/tests/language_strong/deferred_load_constants.dart b/tests/language_strong/deferred_load_constants.dart | 
| index be5a93fb3ba6e7f212f5a8480580b7b034660fdd..a67bd03b24d762a40f5ff77339ed74d5376c1e74 100644 | 
| --- a/tests/language_strong/deferred_load_constants.dart | 
| +++ b/tests/language_strong/deferred_load_constants.dart | 
| @@ -7,11 +7,13 @@ library deferred_load_constants; | 
|  | 
| // Constant declaration. | 
| const c = const C(); | 
| + | 
| // Class declaration (`C` is a constant expression). | 
| class C { | 
| const C(); | 
| static int staticfun(int x) => x; | 
| } | 
| + | 
| // Function type definition. | 
| typedef int funtype(int x); | 
| // Top-level function. | 
|  |