]> Cypherpunks.ru repositories - gostls13.git/blob - misc/cgo/testgodefs/testdata/issue8478.go
ec3bdcf43ba7fc49dee6686c29d1ace7a5fc5a98
[gostls13.git] / misc / cgo / testgodefs / testdata / issue8478.go
1 // Copyright 2014 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 // Issue 8478.  Test that void* is consistently mapped to *byte.
11
12 /*
13 typedef struct {
14         void *p;
15         void **q;
16         void ***r;
17 } s;
18 */
19 import "C"
20
21 type Issue8478 C.s