TypeScript/tests/cases/compiler/implicitAnyDeclareVariablesWithoutTypeAndInit.ts

13 lines
386 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// @noimplicitany: true
// this should be an error
2016-09-22 01:03:51 +02:00
var x; // no error, control flow typed
var y; // error because captured
declare var foo; // error at "foo"
function func(k) { y }; // error at "k"
2014-07-13 01:04:16 +02:00
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;