TypeScript/tests/baselines/reference/implicitAnyDeclareVariablesWithoutTypeAndInit.js

25 lines
591 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [implicitAnyDeclareVariablesWithoutTypeAndInit.ts]
// 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;
//// [implicitAnyDeclareVariablesWithoutTypeAndInit.js]
// this should be an error
var x; // error at "x"
function func(k) { }
2015-01-23 00:58:00 +01:00
; //error at "k"
2014-07-13 01:04:16 +02:00
func(x);
// this shouldn't be an error
2014-07-13 01:04:16 +02:00
var bar = 3;
var bar1;
var x1;
var y1 = new x1;