<?php
goto L1;
switch (0) {
    case 1:
        L1: echo "bug\n";
        break;
}
?>