mirror of
https://github.com/golang/go
synced 2024-11-05 19:46:11 -07:00
b7c7949817
With the old code rewriting refs would rewrite the inner arguments rather than the outer ones, leaving a reference to C.val in the outer arguments. Change-Id: I9b91cb4179eccd08500d14c6591bb15acf8673eb Reviewed-on: https://go-review.googlesource.com/31672 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
34 lines
661 B
Go
34 lines
661 B
Go
// Copyright 2016 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.
|
|
|
|
// Test a constant in conjunction with pointer checking.
|
|
|
|
package cgotest
|
|
|
|
/*
|
|
#include <stdlib.h>
|
|
|
|
#define CheckConstVal 0
|
|
|
|
typedef struct {
|
|
int *p;
|
|
} CheckConstStruct;
|
|
|
|
static void CheckConstFunc(CheckConstStruct *p, int e) {
|
|
}
|
|
*/
|
|
import "C"
|
|
|
|
import (
|
|
"testing"
|
|
"unsafe"
|
|
)
|
|
|
|
func testCheckConst(t *testing.T) {
|
|
// The test is that this compiles successfully.
|
|
p := C.malloc(C.size_t(unsafe.Sizeof(C.int(0))))
|
|
defer C.free(p)
|
|
C.CheckConstFunc(&C.CheckConstStruct{(*C.int)(p)}, C.CheckConstVal)
|
|
}
|