blob: 702115b811d50b520a84e25650e78d1365732dd8 [file] [log] [blame]
Bill Yi7fb3c4c2015-03-23 09:04:07 -07001// Copyright 2012 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.
4
5// Issue 3729: cmd/cgo: access errno from void C function
6// void f(void) returns [0]byte, error in Go world.
7
8// +build windows
9
10package cgotest
11
12import "testing"
13
14func test3729(t *testing.T) {
15 t.Log("skip errno test on Windows")
16}