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