aboutsummaryrefslogtreecommitdiff
path: root/test/escape_goto.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/escape_goto.go')
-rw-r--r--test/escape_goto.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/escape_goto.go b/test/escape_goto.go
index f024a9afe3..90da5a2151 100644
--- a/test/escape_goto.go
+++ b/test/escape_goto.go
@@ -10,7 +10,7 @@ package escape
var x bool
-func _() {
+func f1() {
var p *int
loop:
if x {
@@ -22,7 +22,7 @@ loop:
_ = p
}
-func _() {
+func f2() {
var p *int
if x {
loop:
@@ -33,7 +33,7 @@ func _() {
_ = p
}
-func _() {
+func f3() {
var p *int
if x {
loop: