Source file
misc/cgo/test/testdata/issue24161_darwin_test.go
1
2
3
4
5 package cgotest
6
7 import (
8 "testing"
9
10 "cgotest/issue24161arg"
11 "cgotest/issue24161e0"
12 "cgotest/issue24161e1"
13 "cgotest/issue24161e2"
14 "cgotest/issue24161res"
15 )
16
17 func Test24161Arg(t *testing.T) {
18 issue24161arg.Test(t)
19 }
20 func Test24161Res(t *testing.T) {
21 issue24161res.Test(t)
22 }
23 func Test24161Example0(t *testing.T) {
24 issue24161e0.Test(t)
25 }
26 func Test24161Example1(t *testing.T) {
27 issue24161e1.Test(t)
28 }
29 func Test24161Example2(t *testing.T) {
30 issue24161e2.Test(t)
31 }
32
View as plain text