TypeScript/tests/cases/compiler/tripleSlashReferenceAbsoluteWindowsPath.ts
uniqueiniquity 5ea43db6ec Add test
2018-01-16 11:27:20 -08:00

6 lines
122 B
TypeScript

//@Filename: C:\a\b\c.ts
const x = 5;
//@Filename: C:\a\b\d.ts
/// <reference path="C:\a\b\c.ts" />
const y = x + 3;