summaryrefslogtreecommitdiff
path: root/misc/cgo/nocgo/nocgo_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'misc/cgo/nocgo/nocgo_test.go')
-rw-r--r--misc/cgo/nocgo/nocgo_test.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/misc/cgo/nocgo/nocgo_test.go b/misc/cgo/nocgo/nocgo_test.go
deleted file mode 100644
index 45d247cf95..0000000000
--- a/misc/cgo/nocgo/nocgo_test.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// Copyright 2014 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.
-
-package nocgo
-
-import "testing"
-
-func TestNop(t *testing.T) {
- i := NoCgo()
- if i != 42 {
- t.Errorf("got %d, want %d", i, 42)
- }
-}