mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-02-02 18:10:14 +08:00
52fa80f853
Update to edea4a79e8d7dea2456b688f492c8af33d381dc2 which is likely to be approximately the 1.14.2 release. Reviewed-on: https://go-review.googlesource.com/c/gofrontend/+/227377
24 lines
327 B
Go
24 lines
327 B
Go
// 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.
|
|
//
|
|
// +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
|