annotate libgo/misc/cgo/test/issue3729w.go @ 133:420680fc7707
do normal call in goto codesegment in normal function
author |
anatofuz |
date |
Sat, 03 Nov 2018 19:49:09 +0900 |
parents |
04ced10e8804 |
children |
|
rev |
line source |
111
|
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 }
|