summaryrefslogtreecommitdiffstats
path: root/js/src/tests/js1_8_5/extensions/regress-677924.js
blob: 2323fab4fc2cb5cab5d82315a5fd146390bd66f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Any copyright is dedicated to the Public Domain.
// http://creativecommons.org/licenses/publicdomain/

try {
    version(4096);  // don't assert
} catch (exc) {
}

try {
    version(-1);  // don't assert
} catch (exc) {
}

reportCompare(0, 0, 'ok');