Files
Odin/tests/internal/test_imported_proc_groups.odin
2026-01-10 03:35:33 -05:00

12 lines
280 B
Odin

package test_internal
import "core:testing"
import "test_imported_proc_groups"
// https://github.com/odin-lang/Odin/pull/6119
@test
test_use_imported_proc_group_as_argument :: proc(t: ^testing.T) {
use_proc :: proc(proc()) { }
use_proc(test_imported_proc_groups.proc_group)
}