TypeScript/tests/baselines/reference/typecheckIfCondition.errors.txt
2014-07-12 17:30:19 -07:00

12 lines
398 B
Plaintext

==== tests/cases/compiler/typecheckIfCondition.ts (2 errors) ====
// both uses of module should be an undefined symbol
function myWrapper()
{
if (!module.exports) module.exports = "";
~~~~~~
!!! Cannot find name 'module'.
~~~~~~
!!! Cannot find name 'module'.
var x = null; // don't want to baseline output
}