1// Multiple labels named "label" in function
2
3void func(int x) {
4 label:
5    ;
6 label:
7     ;
8}
9
10
11