a.go 248 B

1234567891011121314
  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. package issue41761a
  5. /*
  6. typedef struct S S;
  7. */
  8. import "C"
  9. type T struct {
  10. X *C.S
  11. }