summaryrefslogtreecommitdiff
path: root/test/goprint.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/goprint.go')
-rw-r--r--test/goprint.go14
1 files changed, 0 insertions, 14 deletions
diff --git a/test/goprint.go b/test/goprint.go
deleted file mode 100644
index c0e34c750..000000000
--- a/test/goprint.go
+++ /dev/null
@@ -1,14 +0,0 @@
-// $G $D/$F.go && $L $F.$A && ./$A.out
-
-// Copyright 2011 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 main
-
-import "time"
-
-func main() {
- go println(42, true, false, true, 1.5, "world", (chan int)(nil), []int(nil), (map[string]int)(nil), (func())(nil), byte(255))
- time.Sleep(1e6)
-}