summaryrefslogtreecommitdiff
path: root/test/fixedbugs/bug077.go
diff options
context:
space:
mode:
Diffstat (limited to 'test/fixedbugs/bug077.go')
-rw-r--r--test/fixedbugs/bug077.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/fixedbugs/bug077.go b/test/fixedbugs/bug077.go
index 08028ab10..2cbf96d98 100644
--- a/test/fixedbugs/bug077.go
+++ b/test/fixedbugs/bug077.go
@@ -7,7 +7,8 @@
package main
func main() {
- var exit int;
+ var exit int
exit:
- _ = exit;
+ _ = exit
+ goto exit
}