TypeScript/tests/cases/fourslash/goToDefinitionUndefinedSymbols.ts
2014-08-01 14:29:42 -07:00

12 lines
356 B
TypeScript

/// <reference path='fourslash.ts' />
////some/*undefinedValue*/Variable;
////var a: some/*undefinedType*/Type;
////var x = {}; x.some/*undefinedProperty*/Property;
////var a: any; a.some/*unkownProperty*/Property;
test.markers().forEach((m, i, a) => {
goTo.position(m.position, m.fileName);
verify.not.definitionLocationExists();
});