// run// Copyright 2014 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.packagemainvara=1funcmain(){deferfunc(){recover()ifa!=2{println("BUG a =",a)}}()a=2b:=a-ac:=4a=c/ba=3}