aboutsummaryrefslogtreecommitdiffstats
path: root/external/contributions/Microsoft/ietcLatest/TestCases/ch10/10.6/10.6-2gs.js
blob: 6d5581c0d9a3eb0e2a0e12b24ac53a500126a37f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15


/**
 * @path ch10/10.6/10.6-2gs.js
 * @description Strict Mode - arguments.callee cannot be accessed in a strict function
 * @onlyStrict
 * @negative .
 */

"use strict";
function f_10_6_1_gs(){
    return arguments.callee;
}
f_10_6_1_gs();