1// cmpout
2
3// Copyright 2011 The Go Authors.  All rights reserved.
4// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
7// Test that println can be the target of a go statement.
8
9package main
10
11import "time"
12
13func main() {
14	go println(42, true, false, true, 1.5, "world", (chan int)(nil), []int(nil), (map[string]int)(nil), (func())(nil), byte(255))
15	time.Sleep(100*time.Millisecond)
16}
17