diff options
| author | moonz <pmnarimani@gmail.com> | 2026-01-27 00:47:12 +0100 |
|---|---|---|
| committer | pc <pmnarimani@gmail.com> | 2026-01-27 00:49:13 +0100 |
| commit | 396f4b887e6d7fe50957dce2a7c06199a07b670e (patch) | |
| tree | 61522e5ad9baa81e9890c8017ab83abfd36bd83e /tests | |
| parent | df40bd21d618a5e6f6162abf8a1420ee80c33803 (diff) | |
refactor: cleaning up the methods and config reading
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/definition_test.odin | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/definition_test.odin b/tests/definition_test.odin index 62165e2..fe4cd3b 100644 --- a/tests/definition_test.odin +++ b/tests/definition_test.odin @@ -742,6 +742,7 @@ ast_goto_proc_group_overload_with_selector :: proc(t: ^testing.T) { } `, packages = packages[:], + config = {enable_overload_resolution = true}, } // Should go to push_back (line 1, character 3) instead of append (line 3) // because push_back is the overload being used with a single value argument @@ -765,6 +766,7 @@ ast_goto_proc_group_overload_identifier :: proc(t: ^testing.T) { app{*}end(&arr, 1) } `, + config = {enable_overload_resolution = true}, } // Should go to push_back (line 1, character 2) instead of append (line 3) // because push_back is the overload being used with a single value argument |