TypeScript/tests/cases/conformance/parser/ecmascript5/parserSbp_7.9_A9_T3.ts
2014-07-12 17:30:19 -07:00

15 lines
343 B
TypeScript

// 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