blob: 0fe86b283ef9e9d45fa851a6af289b95b25f80a9 (
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);
|