github.com/golang/gofrontend@v0.0.0-20240429183944-60f985a78526/libgo/misc/cgo/test/testdata/issue24161_darwin_test.go (about)

     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  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  }