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

12 lines
No EOL
312 B
TypeScript

// @noimplicitany: true
// this should be an error
var x; // error at "x"
declare var foo; // error at "foo"
function func(k) { }; //error at "k"
func(x);
// this shouldn't be an error
var bar = 3;
var bar1: any;
declare var bar2: any;
var x1: any; var y1 = new x1;