1
0
mirror of https://github.com/golang/go synced 2024-11-08 05:36:13 -07:00
go/misc/cgo/testshared/src/exe/exe.go

13 lines
125 B
Go
Raw Normal View History

package main
import (
"dep"
"runtime"
)
func main() {
defer dep.ImplementedInAsm()
runtime.GC()
dep.V = dep.F() + 1
}