Files
LearnGO/go/pkg/mod/github.com/go-delve/delve@v1.23.0/_fixtures/issue1601.go
T
2024-09-19 21:38:24 -04:00

21 lines
178 B
Go

package main
import (
"runtime"
)
/*
typedef struct Qst Q1;
typedef const Q1 Q;
struct Qst {
Q *q;
};
const Q1 globalq;
*/
import "C"
func main() {
runtime.Breakpoint()
}