]> Cypherpunks.ru repositories - gostls13.git/blobdiff - misc/cgo/test/issue26430/b.go
misc/cgo: move registerCgoTests tests to cmd/cgo/internal
[gostls13.git] / misc / cgo / test / issue26430 / b.go
diff --git a/misc/cgo/test/issue26430/b.go b/misc/cgo/test/issue26430/b.go
deleted file mode 100644 (file)
index a7c527c..0000000
+++ /dev/null
@@ -1,13 +0,0 @@
-// Copyright 2018 The Go Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style
-// license that can be found in the LICENSE file.
-
-package a
-
-// typedef struct S ST;
-// struct S { int f; };
-import "C"
-
-func F2(p *C.ST) {
-       p.f = 1
-}