Josh Bleecher Snyder | e7173df | 2014-12-18 10:34:12 -0800 | [diff] [blame] | 1 | // skip |
Russ Cox | cd22afa | 2012-09-23 13:16:14 -0400 | [diff] [blame] | 2 | |
Russ Cox | 5eb007d | 2012-03-27 12:22:19 -0400 | [diff] [blame] | 3 | // 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 Snyder | e7173df | 2014-12-18 10:34:12 -0800 | [diff] [blame] | 8 | // This test is run by bug429_run.go. |
Russ Cox | 5eb007d | 2012-03-27 12:22:19 -0400 | [diff] [blame] | 9 | |
| 10 | package main |
| 11 | |
| 12 | func main() { |
| 13 | select {} |
| 14 | } |