issue37621.go 327 B

1234567891011121314151617181920212223
  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. // +build ignore
  6. package main
  7. /*
  8. struct tt {
  9. long long a;
  10. long long b;
  11. };
  12. struct s {
  13. struct tt ts[3];
  14. };
  15. */
  16. import "C"
  17. type TT C.struct_tt
  18. type S C.struct_s