TypeScript/tests/cases/conformance/es6/Symbols/symbolType8.ts

13 lines
148 B
TypeScript
Raw Normal View History

//@target: ES6
var s = Symbol.for("compare");
s < s;
s < 0;
s > s;
s > 0;
s <= s;
s <= 0;
s >= s;
2015-02-05 04:18:54 +01:00
s >= 0;
0 >= (s || 0);
(s || 0) >= s;