1// run
2
3// Copyright 2022 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
9var _ = func() int {
10	a = false
11	return 0
12}()
13
14var a = true
15var b = a
16
17func main() {
18	if b {
19		panic("FAIL")
20	}
21}
22