From: Rob Pike Date: Tue, 7 Feb 2012 23:52:54 +0000 (+1100) Subject: bug408: delete X-Git-Tag: weekly.2012-02-07~11 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=c5de9b773faa7cfa843f94a1e24866c78353e386;p=gostls13.git bug408: delete It's disabled and unreproducible. R=golang-dev, bradfitz CC=golang-dev https://golang.org/cl/5642053 --- 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 -import "C" - -func f() { - C.printf(nil) // ERROR "go:15.*unexpected type" -}