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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
111
kono
parents:
diff changeset
1 // Copyright 2012 The Go Authors. All rights reserved.
kono
parents:
diff changeset
2 // Use of this source code is governed by a BSD-style
kono
parents:
diff changeset
3 // license that can be found in the LICENSE file.
kono
parents:
diff changeset
4
kono
parents:
diff changeset
5 // Issue 3729: cmd/cgo: access errno from void C function
kono
parents:
diff changeset
6 // void f(void) returns [0]byte, error in Go world.
kono
parents:
diff changeset
7
kono
parents:
diff changeset
8 // +build windows
kono
parents:
diff changeset
9
kono
parents:
diff changeset
10 package cgotest
kono
parents:
diff changeset
11
kono
parents:
diff changeset
12 import "testing"
kono
parents:
diff changeset
13
kono
parents:
diff changeset
14 func test3729(t *testing.T) {
kono
parents:
diff changeset
15 t.Log("skip errno test on Windows")
kono
parents:
diff changeset
16 }