aboutsummaryrefslogtreecommitdiff
path: root/tests/definition_test.odin
diff options
context:
space:
mode:
Diffstat (limited to 'tests/definition_test.odin')
-rw-r--r--tests/definition_test.odin2
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