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

     1  package main
     2  
     3  import (
     4  	"fmt"
     5  	"go/ast"
     6  	"os"
     7  )
     8  
     9  func main() {
    10  	a := &ast.CompositeLit{}
    11  	fmt.Println("demo", a) // set breakpoint here and use next twice
    12  	os.Exit(2)
    13  }