TypeScript/tests/baselines/reference/parserSbp_7.9_A9_T3.types
2015-04-13 12:36:11 -07:00

20 lines
470 B
Plaintext

=== tests/cases/conformance/parser/ecmascript5/parserSbp_7.9_A9_T3.ts ===
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* Check Do-While Statement for automatic semicolon insertion
*
* @path bestPractice/Sbp_7.9_A9_T3.js
* @description Execute do { \n ; \n }while(false) true
*/
//CHECK#1
do {
;
} while (false) true
>false : boolean
>true : boolean