mirror of https://github.com/golang/go.git
For test.go:
package main
import (
"C"
"fmt"
)
func main() {
fmt.Println("Hello, world!")
C.no_such_f()
}
Before:
could not determine kind of name for C.no_such_f
After:
./test.go:10:2: could not determine kind of name for C.no_such_f
Fixes #18452
Change-Id: I49c136b7fa60fab25d2d5b905d440fe4d106e565
Reviewed-on: https://go-review.googlesource.com/34783
Run-TryBot: Alberto Donizetti <alb.donizetti@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: Ian Lance Taylor <iant@golang.org>
|
||
|---|---|---|
| .. | ||
| err1.go | ||
| err2.go | ||
| err3.go | ||
| issue7757.go | ||
| issue8442.go | ||
| issue11097a.go | ||
| issue11097b.go | ||
| issue13129.go | ||
| issue13423.go | ||
| issue13635.go | ||
| issue13830.go | ||
| issue14669.go | ||
| issue16116.go | ||
| issue16591.go | ||
| issue18452.go | ||
| issue18889.go | ||
| malloc.go | ||
| ptr.go | ||
| test.bash | ||