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