blob: 02a1e14f1fdf252c5794539008ac53feb4c3e3b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
function f() {}
f.p = function() {};
Object.freeze(f);
f.p;
reportCompare(0, 0, "ok");
|