Skip to content

Commit

Permalink
Fixes #1530. Use correct record type (#1531)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrekhov authored Nov 7, 2022
1 parent 36cc25d commit b83c4e0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions LanguageFeatures/Records/interaction_with_legacy_A04_t03.dart
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ main() {
Record _rec = rec;

foo(_rec);
foo<R0>(_r0);
foo<R1>(_r1);
foo<R2>(_r2);
foo<R3>(_r3);
foo<R4>(_r4);
foo<R0>(r0);
foo<R1>(r1);
foo<R2>(r2);
foo<R3>(r3);
foo<R4>(r4);
}

0 comments on commit b83c4e0

Please sign in to comment.