Update tests

This commit is contained in:
Ayaz Hafiz 2022-07-18 15:10:22 -04:00
parent f8cd56da41
commit 17f53a23a5
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
20 changed files with 496 additions and 496 deletions

View file

@ -6166,11 +6166,11 @@ mod solve_expr {
mulHashes = \x, y -> hash x * hash y
Id := U64
hash = \@Id n -> n
Id := U64 has [Hash { hash: hashId }]
hashId = \@Id n -> n
Three := {}
hash = \@Three _ -> 3
Three := {} has [Hash { hash: hashThree }]
hashThree = \@Three _ -> 3
result = mulHashes (@Id 100) (@Three {})
"#