1// compile
2
3// Copyright 2019 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 p
8
9func e() {
10	for true {
11		if true {
12			continue
13		}
14	}
15}
16
17func g() {}
18
19func f() {
20	i := 0
21	if true {
22		i++
23	}
24	for true {
25		continue
26		g()
27	}
28}
29