Home | History | Annotate | Download | only in exe
      1 package main
      2 
      3 import (
      4 	"dep"
      5 	"runtime"
      6 )
      7 
      8 func main() {
      9 	defer dep.ImplementedInAsm()
     10 	runtime.GC()
     11 	dep.V = dep.F() + 1
     12 }
     13