blob: 4f3f50e93e0154a17649d4e9f54b8654d7f5ccbc [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
info: Nested function are admitted
es5id: 13.2_A2_T1
description: Nesting level is two
---*/
var __JEDI="jedi";
function __FUNC(){
function __GUNC(){
return arguments[0];
};
return __GUNC;
};
//////////////////////////////////////////////////////////////////////////////
//CHECK#1
if (__FUNC()(__JEDI) !== __JEDI) {
$ERROR('#1: __FUNC()(__JEDI) === __JEDI. Actual: __FUNC()(__JEDI) ==='+__FUNC()(__JEDI));
}
//
//////////////////////////////////////////////////////////////////////////////