Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LanguageFeatures/Patterns/pattern_assignment_A02_t01.dart
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ import "patterns_lib.dart";

main() {
int a1 = 42;
Record r1 = ();
dynamic r1 = ();
var x1 = ((a1, _) && r1) = (1, 2);
Expect.equals(1, a1);
Expect.equals(1, r1.$0);
Expand Down