blob: 2edf5a9106fb1fb73e5b71e7dad4cf611b0561db [file] [log] [blame]
Russ Cox0b477ef2012-02-16 23:48:57 -05001// run
Rob Pike094ee442008-06-06 16:56:18 -07002
3// Copyright 2009 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
7package main
8
9
Russ Cox839a6842009-01-20 14:40:40 -080010func Alloc(i int) int {
Rob Pike094ee442008-06-06 16:56:18 -070011 switch i {
12 default:
13 return 5;
14 case 1:
15 return 1;
16 case 10:
17 return 10;
18 }
Rob Piked6f15be2008-09-11 15:48:42 -070019 return 0
Rob Pike094ee442008-06-06 16:56:18 -070020}
21
Rob Pike9b664c52008-06-18 13:06:09 -070022func main() {
23 s := Alloc(7);
Rob Pikebc2f5f12008-08-11 22:07:49 -070024 if s != 5 { panic("bad") }
Rob Pike9b664c52008-06-18 13:06:09 -070025}
26
Rob Pike094ee442008-06-06 16:56:18 -070027/*
28bug028.go:7: unreachable statements in a switch
29*/