mirror of
https://github.com/golang/go
synced 2024-11-06 22:26:11 -07:00
8 lines
70 B
Go
8 lines
70 B
Go
|
package main
|
||
|
|
||
|
import "C"
|
||
|
|
||
|
func main() {
|
||
|
_ = C.malloc // ERROR HERE
|
||
|
}
|