diff --git a/tests/internal/test_imported_proc_groups.odin b/tests/internal/test_imported_proc_groups.odin index 3f5b01fb3..e91af4bf5 100644 --- a/tests/internal/test_imported_proc_groups.odin +++ b/tests/internal/test_imported_proc_groups.odin @@ -3,8 +3,9 @@ package test_internal import "core:testing" import "test_imported_proc_groups" +// https://github.com/odin-lang/Odin/pull/6119 @test -test_ :: proc(t: ^testing.T) { - use_proc :: proc(proc()) { } - use_proc(test_imported_proc_groups.proc_group) +test_use_imported_proc_group_as_argument :: proc(t: ^testing.T) { + use_proc :: proc(proc()) { } + use_proc(test_imported_proc_groups.proc_group) }