libgo: update to Go 1.11
[official-gcc.git] / libgo / misc / cgo / test / issue26743 / a.go
bloba3df1797b3b5133d63ecfef7d50c53365d02290a
1 // Copyright 2018 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.
5 package issue26743
7 // typedef unsigned int uint;
8 // int C1(uint x) { return x; }
9 import "C"
11 var V1 = C.C1(0)