blob: b74677ac59c9810743ce6ba667858bd4e835c440 [file] [log] [blame]
Yury Smolsky57d40f12018-05-31 18:51:00 +03001// run
Russ Coxa186b772010-01-27 15:37:08 -08002
Emmanuel Odeke53fd5222016-04-10 14:32:26 -07003// Copyright 2010 The Go Authors. All rights reserved.
Russ Coxa186b772010-01-27 15:37:08 -08004// Use of this source code is governed by a BSD-style
5// license that can be found in the LICENSE file.
6
Rob Pike83976e32012-02-19 14:28:53 +11007// Test that we can defer the predeclared functions print and println.
8
Russ Coxa186b772010-01-27 15:37:08 -08009package main
10
11func main() {
12 defer println(42, true, false, true, 1.5, "world", (chan int)(nil), []int(nil), (map[string]int)(nil), (func())(nil), byte(255))
13 defer println(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20)
Rob Pike83976e32012-02-19 14:28:53 +110014 // Disabled so the test doesn't crash but left here for reference.
15 // defer panic("dead")
Russ Coxa186b772010-01-27 15:37:08 -080016 defer print("printing: ")
17}