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/dict.typ | |
| parent | b471ac7d590abd2398ce25193b4e4df373bf2e9c (diff) | |
Update tests for type system changes
Diffstat (limited to 'tests/typ/compiler/dict.typ')
| -rw-r--r-- | tests/typ/compiler/dict.typ | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/typ/compiler/dict.typ b/tests/typ/compiler/dict.typ index 957ebe92..2668f347 100644 --- a/tests/typ/compiler/dict.typ +++ b/tests/typ/compiler/dict.typ @@ -98,8 +98,8 @@ let dict = ( func: () => 1, ) - // Error: 3-14 type dictionary has no method `func` - // Hint: 3-14 to call the function stored in the dictionary, surround the field access with parentheses + // Error: 8-12 type dictionary has no method `func` + // Hint: 8-12 to call the function stored in the dictionary, surround the field access with parentheses dict.func() } @@ -109,6 +109,6 @@ nonfunc: 1 ) - // Error: 3-17 type dictionary has no method `nonfunc` + // Error: 8-15 type dictionary has no method `nonfunc` dict.nonfunc() -}
\ No newline at end of file +} |
