-1:000000000000 | 0:a3075b6092c3 |
---|---|
1 // Copyright 2009 the Sputnik authors. All rights reserved. | |
2 // This code is governed by the BSD license found in the LICENSE file. | |
3 | |
4 /** | |
5 * Check For Statement for automatic semicolon insertion | |
6 * | |
7 * @path ch07/7.9/S7.9_A6.4_T1.js | |
8 * @description Three semicolons. For header is (false semicolon false semicolon false semicolon) | |
9 * @negative | |
10 */ | |
11 | |
12 //CHECK#1 | |
13 for(false;false;false;) { | |
14 break; | |
15 } | |
16 |