]> Cypherpunks.ru repositories - gostls13.git/blob - misc/cgo/testgodefs/testdata/issue37621.go
misc/cgo: gofmt
[gostls13.git] / misc / cgo / testgodefs / testdata / issue37621.go
1 // Copyright 2020 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 ignore
6 // +build ignore
7
8 package main
9
10 /*
11 struct tt {
12         long long a;
13         long long b;
14 };
15
16 struct s {
17         struct tt ts[3];
18 };
19 */
20 import "C"
21
22 type TT C.struct_tt
23
24 type S C.struct_s