Source file misc/cgo/testgodefs/testdata/issue39534.go
1 // Copyright 2020 The Go Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style 3 // license that can be found in the LICENSE file. 4 // 5 // +build ignore 6 7 package main 8 9 // enum { ENUMVAL = 0x1 }; 10 import "C" 11 12 const ENUMVAL = C.ENUMVAL 13