• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2018 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5//go:build cgo
6
7package cgotest
8
9import (
10	"testing"
11
12	"cmd/cgo/internal/test/issue24161arg"
13	"cmd/cgo/internal/test/issue24161e0"
14	"cmd/cgo/internal/test/issue24161e1"
15	"cmd/cgo/internal/test/issue24161e2"
16	"cmd/cgo/internal/test/issue24161res"
17)
18
19func Test24161Arg(t *testing.T) {
20	issue24161arg.Test(t)
21}
22func Test24161Res(t *testing.T) {
23	issue24161res.Test(t)
24}
25func Test24161Example0(t *testing.T) {
26	issue24161e0.Test(t)
27}
28func Test24161Example1(t *testing.T) {
29	issue24161e1.Test(t)
30}
31func Test24161Example2(t *testing.T) {
32	issue24161e2.Test(t)
33}
34