TypeScript/tests/cases/compiler/invalidTripleSlashReference.ts
2014-07-12 17:30:19 -07:00

5 lines
204 B
TypeScript

/// <reference path='filedoesnotexist.ts'/>
/// <reference path='otherdoesnotexist.d.ts'/>
// this test doesn't actually give the errors you want due to the way the compiler reports errors
var x = 1;