mirror of
https://github.com/golang/go
synced 2024-11-07 13:36:19 -07:00
a5a9a06d71
Fixes #39534 Change-Id: Icbc1745935dd7098c09e2d35c61cd5bfbaa31c63 Reviewed-on: https://go-review.googlesource.com/c/go/+/237558 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Matthew Dempsky <mdempsky@google.com>
13 lines
259 B
Go
13 lines
259 B
Go
// Copyright 2020 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
//
|
|
// +build ignore
|
|
|
|
package main
|
|
|
|
// enum { ENUMVAL = 0x1 };
|
|
import "C"
|
|
|
|
const ENUMVAL = C.ENUMVAL
|