update test suite to avoid GH-2385 problems, including incorrect typing

This commit is contained in:
Vern Paxson 2022-12-04 17:56:30 -08:00
parent 3c33728a2a
commit 66c5bdbeac
4 changed files with 24 additions and 12 deletions

View file

@ -38,9 +38,15 @@ tab6, table[string,string] of vector of count, {
[a, b] = [1, 2],
[c, d] = [3, 4]
}
tab7, table[string,string] of list of count,count, {
[a, b] = 1, 2,
[c, d] = 3, 4
tab7, table[string,string] of set[count], {
[a, b] = {
2,
1
},
[c, d] = {
4,
3
}
}
tab8, table[MyRecord] of count, {
[[a=c, b=d]] = 43,