diff options
| author | Laurenz <laurmaedje@gmail.com> | 2023-09-11 14:42:43 +0200 |
|---|---|---|
| committer | Laurenz <laurmaedje@gmail.com> | 2023-09-11 14:42:43 +0200 |
| commit | 305524d005df075d53575552ee090fb53192a3fe (patch) | |
| tree | 08b739e8fc41057b79a2d7ea7a7208ca358d60b3 /tests/typ/compiler/call.typ | |
| parent | b471ac7d590abd2398ce25193b4e4df373bf2e9c (diff) | |
Update tests for type system changes
Diffstat (limited to 'tests/typ/compiler/call.typ')
| -rw-r--r-- | tests/typ/compiler/call.typ | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/typ/compiler/call.typ b/tests/typ/compiler/call.typ index 77e17b50..5297ec15 100644 --- a/tests/typ/compiler/call.typ +++ b/tests/typ/compiler/call.typ @@ -31,12 +31,12 @@ // Call function assigned to variable. #let alias = type -#test(alias(alias), "function") +#test(alias(alias), type) // Callee expressions. #{ // Wrapped in parens. - test((type)("hi"), "string") + test((type)("hi"), str) // Call the return value of a function. let adder(dx) = x => x + dx |
