mirror of https://github.com/tc39/test262.git
24 lines
616 B
JavaScript
24 lines
616 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
info: VariableDeclaration within "for" statement is allowed
|
|
es5id: 12.2_A7
|
|
description: Declaring variable within "for" statement
|
|
---*/
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
//CHECK#1
|
|
try{
|
|
infor_var = infor_var;
|
|
}catch(e){
|
|
throw new Test262Error('#1: Variable declaration inside "for" loop is admitted');
|
|
};
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
for (;;){
|
|
break;
|
|
var infor_var;
|
|
}
|