mirror of
https://github.com/golang/go
synced 2024-11-19 18:34:43 -07:00
4a483ce2ab
Fixes #19832 Change-Id: I7ce39c2c435d4716d8a42ac6784b4c87874c0e13 Reviewed-on: https://go-review.googlesource.com/49490 Run-TryBot: Russ Cox <rsc@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Russ Cox <rsc@golang.org>
17 lines
417 B
Go
17 lines
417 B
Go
// Copyright 2015 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 19832. Functions taking a pointer typedef were being expanded and triggering a compiler error.
|
|
|
|
package cgotest
|
|
|
|
// typedef struct { int i; } *PS;
|
|
// void T19832(PS p) {}
|
|
import "C"
|
|
import "testing"
|
|
|
|
func test19832(t *testing.T) {
|
|
C.T19832(nil)
|
|
}
|