aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRob Pike <r@golang.org>2012-02-08 10:52:54 +1100
committerRob Pike <r@golang.org>2012-02-08 10:52:54 +1100
commitc5de9b773faa7cfa843f94a1e24866c78353e386 (patch)
tree8e56f2e004cb27fd282a9499c741dc2d8f1df3a5
parent3d6b368514f2b72538c23a27f248684dd9cca227 (diff)
downloadgo-c5de9b773faa7cfa843f94a1e24866c78353e386.tar.gz
go-c5de9b773faa7cfa843f94a1e24866c78353e386.zip
bug408: delete
It's disabled and unreproducible. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5642053
-rw-r--r--test/fixedbugs/bug408.go20
1 files changed, 0 insertions, 20 deletions
diff --git a/test/fixedbugs/bug408.go b/test/fixedbugs/bug408.go
deleted file mode 100644
index 65e5497ed0..0000000000
--- a/test/fixedbugs/bug408.go
+++ /dev/null
@@ -1,20 +0,0 @@
-// true
-
-// WAS: errchk cgo $D/$F.go
-// but this fails (cgo succeeds) on OS X Snow Leopard
-// with Xcode 4.2 and gcc version 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.1.00).
-
-// Copyright 2012 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.
-
-// Issue 1800: cgo not reporting line numbers.
-
-package main
-
-// #include <stdio.h>
-import "C"
-
-func f() {
- C.printf(nil) // ERROR "go:15.*unexpected type"
-}