aboutsummaryrefslogtreecommitdiff
path: root/misc/cgo/testgodefs/testdata/issue37621.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/testgodefs/testdata/issue37621.go')
-rw-r--r--misc/cgo/testgodefs/testdata/issue37621.go23
1 files changed, 0 insertions, 23 deletions
diff --git a/misc/cgo/testgodefs/testdata/issue37621.go b/misc/cgo/testgodefs/testdata/issue37621.go
deleted file mode 100644
index 655e8ae465..0000000000
--- a/misc/cgo/testgodefs/testdata/issue37621.go
+++ /dev/null
@@ -1,23 +0,0 @@
-// Copyright 2020 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.
-
-//go:build ignore
-
-package main
-
-/*
-struct tt {
- long long a;
- long long b;
-};
-
-struct s {
- struct tt ts[3];
-};
-*/
-import "C"
-
-type TT C.struct_tt
-
-type S C.struct_s