summaryrefslogtreecommitdiffstats
path: root/misc/cgo/errors/testdata/long_double_size.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/errors/testdata/long_double_size.go')
-rw-r--r--misc/cgo/errors/testdata/long_double_size.go16
1 files changed, 16 insertions, 0 deletions
diff --git a/misc/cgo/errors/testdata/long_double_size.go b/misc/cgo/errors/testdata/long_double_size.go
new file mode 100644
index 0000000..8b797f8
--- /dev/null
+++ b/misc/cgo/errors/testdata/long_double_size.go
@@ -0,0 +1,16 @@
+// Copyright 2017 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.
+
+package main
+
+/*
+const int sizeofLongDouble = sizeof(long double);
+*/
+import "C"
+
+import "fmt"
+
+func main() {
+ fmt.Println(C.sizeofLongDouble)
+}