Added 'noImplicitAny' to tests.

This commit is contained in:
Daniel Rosenwasser 2016-01-04 22:48:53 -05:00
parent 4484ca062e
commit 06bff434cc
4 changed files with 8 additions and 0 deletions

View file

@ -1,3 +1,5 @@
// @noImplicitAny: true
let x: (a: string) => string;
x = (100, a => a);

View file

@ -1,3 +1,5 @@
// @noImplicitAny: true
let x: (a: string) => string;
x = (100, a => {

View file

@ -1,3 +1,5 @@
// @noImplicitAny: true
let x: (a: string) => string;
let y = true;

View file

@ -1,3 +1,5 @@
// @noImplicitAny: true
let x: (a: string) => string;
let y = true;