aboutsummaryrefslogtreecommitdiff
path: root/tests/internal/test_imported_proc_groups.odin
blob: e91af4bf53e80550ddcfe08774c5aca71aedde48 (plain)
1
2
3
4
5
6
7
8
9
10
11
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)
}