mirror of
https://github.com/golang/go
synced 2024-11-15 10:50:37 -07:00
e3597e3920
««« CL 14870046 / b508daf6dae6 cmd/cgo: fix line number in an error message Fixes #6563. R=golang-dev, iant CC=golang-dev https://golang.org/cl/14870046 »»» R=golang-dev CC=golang-dev https://golang.org/cl/20150045
19 lines
274 B
Go
19 lines
274 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 main
|
|
|
|
/*
|
|
#cgo LDFLAGS: -c
|
|
|
|
void test() {
|
|
xxx; // ERROR HERE
|
|
}
|
|
*/
|
|
import "C"
|
|
|
|
func main() {
|
|
C.test()
|
|
}
|