blob: 9556f2370635973e096957d7a13d083747c2e5fa [file] [log] [blame]
// tslint:disable
const equalsNan = 1 === NaN;
declare const x: number;
if (x === NaN) alert('never happens');
if (x == NaN) alert('never happens');
if (x !== NaN) alert('always happens');
if (x != NaN) alert('always happens');
NaN === NaN;
NaN === 0 / 0;
export {} // Make this file a module.