mirror of
https://github.com/golang/go
synced 2024-11-05 11:46:12 -07:00
1a94431a78
Fixes #13930. Change-Id: I124b7d31d1f2be05b7f23dafd1e52d9f3f02f3f0 Reviewed-on: https://go-review.googlesource.com/18623 Run-TryBot: Matthew Dempsky <mdempsky@google.com> Reviewed-by: Ian Lance Taylor <iant@golang.org>
14 lines
361 B
Go
14 lines
361 B
Go
// Copyright 2016 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.
|
|
|
|
// Issue 13930. Test that cgo's multiple-value special form for
|
|
// C function calls works in variable declaration statements.
|
|
|
|
package cgotest
|
|
|
|
// #include <stdlib.h>
|
|
import "C"
|
|
|
|
var _, _ = C.abs(0)
|