TypeScript/tests/baselines/reference/typecheckIfCondition.errors.txt

12 lines
398 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== 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
}