TypeScript/tests/baselines/reference/noErrorsInCallback.errors.txt

17 lines
766 B
Plaintext
Raw Normal View History

tests/cases/compiler/noErrorsInCallback.ts(4,19): error TS2345: Argument of type '{}' is not assignable to parameter of type 'string'.
tests/cases/compiler/noErrorsInCallback.ts(6,23): error TS2345: Argument of type '{}' is not assignable to parameter of type 'string'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/noErrorsInCallback.ts (2 errors) ====
class Bar {
constructor(public foo: string) { }
}
var one = new Bar({}); // Error
~~
!!! error TS2345: Argument of type '{}' is not assignable to parameter of type 'string'.
2014-07-13 01:04:16 +02:00
[].forEach(() => {
var two = new Bar({}); // No error?
~~
!!! error TS2345: Argument of type '{}' is not assignable to parameter of type 'string'.
2014-07-13 01:04:16 +02:00
});