Skip to content

Commit

Permalink
Roll failures fixed (dart-lang#1962)
Browse files Browse the repository at this point in the history
  • Loading branch information
sgrekhov authored Mar 23, 2023
1 parent 5b44f38 commit c1aef80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions LanguageFeatures/Patterns/invocation_keys_A02_t01.dart
Original file line number Diff line number Diff line change
Expand Up @@ -71,10 +71,10 @@ main() {
Expect.equals("C(2).val;", c.log);
c.clearLog();

var (C(val: int x) && C(val: int y)) = c;
var (C(val: int x1) && C(val: int y1)) = c;
Expect.equals("C(2).val;", c.log);
c.clearLog();

final (C(val: int x) && C(val: int y)) = c;
final (C(val: int x2) && C(val: int y2)) = c;
Expect.equals("C(2).val;", c.log);
}
1 change: 0 additions & 1 deletion LanguageFeatures/Patterns/matching_list_A01_t02.dart
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@ main() {
Expect.equals("", ml1.log);
Expect.equals("no match", test1(ml2));
Expect.equals("", ml2.log);
Expect.equals("no match", test1(ml3));

Expect.equals("no match", test2(ml1));
Expect.equals("", ml1.log);
Expand Down

0 comments on commit c1aef80

Please sign in to comment.