Source file src/cmd/cgo/internal/test/issue76861/a.go
1 // Copyright 2025 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 package issue76861 6 7 // #cgo CFLAGS: -Wall -Werror 8 // void issue76861(void) {} 9 import "C" 10 11 func Issue76861() { 12 C.issue76861() 13 } 14