Skip to content

Commit efb1143

Browse files
eernstgcommit-bot@chromium.org
authored andcommitted
Fix typos in CL 148324
CL 148324 'For external/abstract fields: add tests and update Dart.g' contained a couple of typos, this CL corrects them. Change-Id: I6ee9b769c8b23e299b13cbb5d4ba38cbfec7656f Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/153145 Reviewed-by: Lasse R.H. Nielsen <[email protected]> Commit-Queue: Erik Ernst <[email protected]>
1 parent 9321c49 commit efb1143

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/language/external_abstract_fields/abstract_fields_error_test.dart

+3-3
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,9 @@ abstract class Abstract2 {
6060
}
6161
}
6262

63-
class Concrete2 implements Abstract2 {
64-
final int x;
65-
String y;
63+
class Concrete2 extends Abstract2 {
64+
final int x = 0;
65+
String y = '';
6666
}
6767

6868
void main() {

0 commit comments

Comments
 (0)