diff --git a/LanguageFeatures/Patterns/record_A02_t09.dart b/LanguageFeatures/Patterns/record_A02_t09.dart index 31c8408217..776d92c11e 100644 --- a/LanguageFeatures/Patterns/record_A02_t09.dart +++ b/LanguageFeatures/Patterns/record_A02_t09.dart @@ -59,7 +59,7 @@ main() { Expect.equals(Unit(1), a7); var (n: Square(size: Unit a8)) = (n: Square(2)); Expect.equals(Unit(2), a8); - var (n: Square(size: unit a9), Circle(size: Unit b9)) = + var (n: Square(size: Unit a9), Circle(size: Unit b9)) = (n: Square(1), Circle(1)); Expect.equals(Unit(1), a9); Expect.equals(Unit(1), b9);