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

     1  package main
     2  
     3  import (
     4  	"runtime"
     5  )
     6  
     7  /*
     8  typedef struct Qst Q1;
     9  typedef const Q1 Q;
    10  struct Qst {
    11  	Q *q;
    12  };
    13  
    14  const Q1 globalq;
    15  */
    16  import "C"
    17  
    18  func main() {
    19  	runtime.Breakpoint()
    20  }