diff options
Diffstat (limited to 'cgo/testdata/const.out.go')
-rw-r--r-- | cgo/testdata/const.out.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cgo/testdata/const.out.go b/cgo/testdata/const.out.go index fb0bbeeba..e7ee15380 100644 --- a/cgo/testdata/const.out.go +++ b/cgo/testdata/const.out.go @@ -49,3 +49,6 @@ const C.foo = 3 const C.bar = C.foo const C.unreferenced = 4 const C.referenced = C.unreferenced +const C.fnlike_val = 5 +const C.square_val = (20 * 20) +const C.add_val = (3 + 5) |