These are almost never used, and are now deprecated in PHP 8.5. Let's go ahead and tell people to never use them in any version. ```php switch ($val) { case 1; // This works until 8.5, who knew? But we shouldn't allow it. print $val; case 2: // This is the correct way. print $val * 2; } ```