blob: 6e05f7be25090ab25558413b85ed0482b4c8baa6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// |jit-test| error: InternalError: too much recursion
function TestCase(d) {
toPrinted(d)
}
function toPrinted(value) {}
function reportCompare (expected, actual, description) {
if (typeof description == "undefined")
toPrinted(expected);
new TestCase(description);
reportCompare();
}
reportCompare(Math['LN2'], Math['LN2'], 0);
|