• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package cgo_opts
2
3/*
4#cgo CFLAGS: -DFOO=1 -DBAR=2 -g -O2
5int x = FOO + BAR;
6*/
7import "C"
8
9var x = int(C.x)
10