Skip to content

Commit

Permalink
Fix regression test.
Browse files Browse the repository at this point in the history
  • Loading branch information
munificent committed Aug 17, 2024
1 parent c808144 commit 50d4403
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/tall/regression/1500/1529.stmt
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@
},
};
>>> (indent 2)
T? get valueOrNull => switch (this) { Data(:var value) => value, _ => null };
T? valueOrNull() => switch (this) { Data(:var value) => value, _ => null };
<<<
T? get valueOrNull => switch (this) {
T? valueOrNull() => switch (this) {
Data(:var value) => value,
_ => null,
};
Expand Down

0 comments on commit 50d4403

Please sign in to comment.