mirror of
https://github.com/golang/go
synced 2024-11-06 08:16:11 -07:00
53fd522c0d
Follows suit with https://go-review.googlesource.com/#/c/20111. Generated by running $ grep -R 'Go Authors. All' * | cut -d":" -f1 | while read F;do perl -pi -e 's/Go Authors. All/Go Authors. All/g' $F;done The code in cmd/internal/unvendor wasn't changed. Fixes #15213 Change-Id: I4f235cee0a62ec435f9e8540a1ec08ae03b1a75f Reviewed-on: https://go-review.googlesource.com/21819 Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
52 lines
1.1 KiB
Go
52 lines
1.1 KiB
Go
// Copyright 2013 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.
|
|
|
|
// Issue 7786. No runtime test, just make sure that typedef and struct/union/class are interchangeable at compile time.
|
|
|
|
package cgotest
|
|
|
|
// struct test7786;
|
|
// typedef struct test7786 typedef_test7786;
|
|
// void f7786(struct test7786 *ctx) {}
|
|
// void g7786(typedef_test7786 *ctx) {}
|
|
//
|
|
// typedef struct body7786 typedef_body7786;
|
|
// struct body7786 { int x; };
|
|
// void b7786(struct body7786 *ctx) {}
|
|
// void c7786(typedef_body7786 *ctx) {}
|
|
//
|
|
// typedef union union7786 typedef_union7786;
|
|
// void u7786(union union7786 *ctx) {}
|
|
// void v7786(typedef_union7786 *ctx) {}
|
|
import "C"
|
|
|
|
func f() {
|
|
var x1 *C.typedef_test7786
|
|
var x2 *C.struct_test7786
|
|
x1 = x2
|
|
x2 = x1
|
|
C.f7786(x1)
|
|
C.f7786(x2)
|
|
C.g7786(x1)
|
|
C.g7786(x2)
|
|
|
|
var b1 *C.typedef_body7786
|
|
var b2 *C.struct_body7786
|
|
b1 = b2
|
|
b2 = b1
|
|
C.b7786(b1)
|
|
C.b7786(b2)
|
|
C.c7786(b1)
|
|
C.c7786(b2)
|
|
|
|
var u1 *C.typedef_union7786
|
|
var u2 *C.union_union7786
|
|
u1 = u2
|
|
u2 = u1
|
|
C.u7786(u1)
|
|
C.u7786(u2)
|
|
C.v7786(u1)
|
|
C.v7786(u2)
|
|
}
|