mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
29 lines
674 B
JavaScript
29 lines
674 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* Nested function are admitted
|
|
*
|
|
* @path ch13/13.2/S13.2_A2_T1.js
|
|
* @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));
|
|
}
|
|
//
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|