aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTohei Ichikawa <ichikawa.tohei.desu@gmail.com>2026-01-10 03:35:33 -0500
committerTohei Ichikawa <ichikawa.tohei.desu@gmail.com>2026-01-10 03:35:33 -0500
commitc8f2603d3eb6f47ab772f83ecd0a5758d18e7b59 (patch)
treea4063102dbf155eb0dc4352a190e84b751dc31d3
parentbf7c92bf0909aaf49a8590570085e1c6a1787d00 (diff)
Fix test name, add PR link, use tabs
-rw-r--r--tests/internal/test_imported_proc_groups.odin7
1 files changed, 4 insertions, 3 deletions
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)
}