2017-12-13 23:24:13 +01:00
|
|
|
let a: i32;
|
|
|
|
let b: i32;
|
2017-12-14 11:55:35 +01:00
|
|
|
const c: i32 = 0;
|
|
|
|
let d = 2;
|
|
|
|
let e;
|
|
|
|
const f: i32;
|
|
|
|
// ERROR 1110: "Type expected." in var.ts @ 59,59
|
|
|
|
// ERROR 1155: "'const' declarations must be initialized." in var.ts @ 84,85
|