Skip to content

Commit 94fcce2

Browse files
committed
Fix analyzer warning in a unit test.
Add initializer for a final field. [email protected] BUG= Review URL: https://codereview.chromium.org/1494233003 .
1 parent dff13be commit 94fcce2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/language/vm/type_propagation_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ class B {
1212
}
1313

1414
class C {
15-
final f0;
15+
final f0 = null;
1616

1717
final a;
1818
C() : a = new B(0);

0 commit comments

Comments
 (0)