blob: daeeed45a5ab7ef4677d4b4c1155f52743e12931 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Copyright (c) 2012 Ecma International. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/*---
es5id: 10.6-12-1
description: Accessing callee property of Arguments object is allowed
flags: [noStrict]
---*/
function testcase() {
arguments.callee;
}
testcase();
reportCompare(0, 0);
|