Fix test name, add PR link, use tabs

This commit is contained in:
Tohei Ichikawa
2026-01-10 03:35:33 -05:00
parent bf7c92bf09
commit c8f2603d3e

View File

@@ -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)
}