|  | library; | 
|  | // | 
|  | // Problems in library: | 
|  | // | 
|  | // pkg/front_end/testcases/general/uninitialized_static_field.dart:7:16: Error: Final field 'finalField' is not initialized. | 
|  | // Try to initialize the field in the declaration or in every constructor. | 
|  | //   static final finalField; | 
|  | //                ^^^^^^^^^^ | 
|  | // | 
|  | // pkg/front_end/testcases/general/uninitialized_static_field.dart:12:16: Error: Final field 'finalField' is not initialized. | 
|  | // Try to initialize the field in the declaration or in every constructor. | 
|  | //   static final finalField; | 
|  | //                ^^^^^^^^^^ | 
|  | // | 
|  | import self as self; | 
|  | import "dart:core" as core; | 
|  |  | 
|  | class C extends core::Object { | 
|  | static field dynamic field = null; | 
|  | static final field dynamic finalField = null; | 
|  | synthetic constructor •() → self::C | 
|  | : super core::Object::•() | 
|  | ; | 
|  | } | 
|  | class D extends core::Object { | 
|  | static field dynamic field = null; | 
|  | static final field dynamic finalField = null; | 
|  | static factory •() → self::D | 
|  | return throw ""; | 
|  | } |