Disallow ... without type in function typehints
[hiphop-php.git] / hphp / hack / test / typecheck / switch_fallthrough1.php
blobdc75c99e5c6ec1ad90c0f61f5b8758137d2638bd
1 <?hh // strict
2 /**
3 * Copyright (c) 2014, Facebook, Inc.
4 * All rights reserved.
6 * This source code is licensed under the MIT license found in the
7 * LICENSE file in the "hack" directory of this source tree.
12 function f(): void {
13 switch (1) {
14 case 1:
15 break;
16 case 2:
17 break;
18 default:
19 break;