blob: 80581a8a3b6ccec380c6401596364ef4e0134ccb [file] [log] [blame]
Rémy Oudompheng2ece2f52012-02-18 22:15:42 +01001// compile
Robert Griesemer485d1bb2008-07-24 13:36: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
9func main() {
Russ Coxe72156b2011-03-15 14:05:07 -040010 var exit int
Ian Lance Taylora957cee2008-11-11 18:17:54 -080011exit:
Russ Coxe72156b2011-03-15 14:05:07 -040012 _ = exit
13 goto exit
Robert Griesemer485d1bb2008-07-24 13:36:18 -070014}