2012-02-16 21:49:30 -07:00
|
|
|
// build
|
2008-07-24 14:30:49 -06:00
|
|
|
|
|
|
|
// Copyright 2009 The Go Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
func f() {
|
2011-03-15 12:05:07 -06:00
|
|
|
exit:
|
|
|
|
;
|
|
|
|
goto exit
|
2008-07-24 14:30:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
func main() {
|
2011-03-15 12:05:07 -06:00
|
|
|
exit:
|
|
|
|
; // this should be legal (labels not properly scoped?)
|
|
|
|
goto exit
|
2008-07-24 14:30:49 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
uetli:~/Source/go/test/bugs gri$ 6g bug076.go
|
|
|
|
bug076.go:11: label redeclared: exit
|
|
|
|
*/
|