Sign in
go
/
gofrontend
/
87945b620b2100d33e27f33e6276a4e4e5890659
/
.
/
libgo
/
misc
/
cgo
/
errors
/
src
/
issue13423.go
blob: fc1915723765081b42392923c661fde295e8a27c [
file
] [
log
] [
blame
]
// 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.
package main
// #include <stdio.h>
import "C"
func main() {
_ = C.fopen()
// ERROR HERE
}