gitlab.com/Raven-IO/raven-delve@v1.22.4/_fixtures/issue1656/main.go (about)

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  )
     6  
     7  var g int = 0
     8  
     9  func compromised(n int64)
    10  
    11  //go:nosplit
    12  func skipped() {
    13  	g++
    14  }
    15  
    16  func main() {
    17  	compromised(1)
    18  	fmt.Printf("%d\n", g)
    19  }