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
No known key found for this signature in database
GPG Key ID: 33173CB6F77F4277
1 changed files with 2 additions and 2 deletions

View File

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