Fix code-gen tests due to associativity change.

This commit is contained in:
KtorZ
2024-03-07 01:28:51 +01:00
parent bff822ea7f
commit 0f926d3c31

View File

@@ -4379,7 +4379,7 @@ fn expect_head3_no_tail() {
test hi() {
let a = [1, 2, 3]
expect [h, i, j] = a
h == h && i == i && j == j
(h == h && i == i) && j == j
}
"#;
@@ -4451,7 +4451,7 @@ fn expect_head3_cast_data_no_tail() {
test hi() {
let a: Data = [1, 2, 3]
expect [h, i, j]: List<Int> = a
h == h && i ==i && j == j
(h == h && i ==i) && j == j
}
"#;