mirror of
https://github.com/golang/go
synced 2024-11-08 15:16:25 -07:00
d9e2ba4fcc
This was accidentally broken by CL 127755. Fixes #29333 Change-Id: I5e92048c64a55c1699d6c38eb4dbbd51c817b820 Reviewed-on: https://go-review.googlesource.com/c/155037 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
18 lines
375 B
Go
18 lines
375 B
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.
|
|
|
|
package cgotest
|
|
|
|
/*
|
|
// We've historically permitted #include <>, so test it here. Issue 29333.
|
|
#include <issue4339.h>
|
|
*/
|
|
import "C"
|
|
|
|
import "testing"
|
|
|
|
func test4339(t *testing.T) {
|
|
C.handle4339(&C.exported4339)
|
|
}
|