blob: 31d5a3af18873f3ab94b65739ac78fe26db0c452 [file] [log] [blame]
Josh Bleecher Snydere7173df2014-12-18 10:34:12 -08001// skip
Russ Coxcd22afa2012-09-23 13:16:14 -04002
Russ Cox5eb007d2012-03-27 12:22:19 -04003// Copyright 2012 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// Should print deadlock message, not hang.
Josh Bleecher Snydere7173df2014-12-18 10:34:12 -08008// This test is run by bug429_run.go.
Russ Cox5eb007d2012-03-27 12:22:19 -04009
10package main
11
12func main() {
13 select {}
14}