mirror of
https://github.com/odin-lang/Odin.git
synced 2026-02-12 14:23:33 +00:00
12 lines
280 B
Odin
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)
|
|
}
|