github.com/4ad/go@v0.0.0-20161219182952-69a12818b605/misc/cgo/test/issue3729w.go (about)

     1  // 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  
    10  package cgotest
    11  
    12  import "testing"
    13  
    14  func test3729(t *testing.T) {
    15  	t.Log("skip errno test on Windows")
    16  }