TypeScript/tests/cases/compiler/moduleResolution_automaticTypeDirectiveNames.ts
2018-09-23 14:48:48 +03:00

11 lines
204 B
TypeScript

// @noImplicitReferences: true
// @Filename: /node_modules/@types/.a/index.d.ts
declare const a: number;
// @Filename: /node_modules/@types/a/index.d.ts
declare const a: string;
// @Filename: /a.ts
a;