Commit 65ec16b6 authored by Rob Pike's avatar Rob Pike

Automated g4 rollback of changelist 29478.

*** Reason for rollback ***

  these semicolons are necessary only because of a bug in 6g

*** Original change description ***

add missing semicolons in example

TBR=gri
OCL=29624
CL=29624
parent fbcbcdbb
...@@ -3270,14 +3270,14 @@ and the variables are initialized once before the statement is entered. ...@@ -3270,14 +3270,14 @@ and the variables are initialized once before the statement is entered.
<pre> <pre>
switch tag { switch tag {
default: s3(); default: s3()
case 0, 1, 2, 3: s1(); case 0, 1, 2, 3: s1()
case 4, 5, 6, 7: s2(); case 4, 5, 6, 7: s2()
} }
switch x := f(); { switch x := f(); {
case x &lt; 0: return -x; case x &lt; 0: return -x
default: return x; default: return x
} }
switch { // missing expression means "true" switch { // missing expression means "true"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment