blob: 8ffb4bd55a7841ded0968b1413189022263bd112 (
plain)
1
2
3
4
5
6
7
8
9
|
function reportCompare (expected, actual, description) {}
function f()
{
f(f, 0x09AA, 0x09B0, f);
}
try {
reportCompare ("outer", f(),
"Inner function statement should not have been called.");
} catch (e) {}
|