Imported Upstream version 1.0.0
[platform/upstream/js.git] / js / src / tests / js1_8_5 / regress / regress-584355.js
1 var actual;
2 var expect = "function f() {\n    ff();\n}";
3 function fun() {
4     (new Function ("function ff () { actual = '' + ff. caller; } function f () { ff (); } f ();")) ();
5 }
6 fun();
7 reportCompare(expect, actual, "");