TypeScript/tests/baselines/reference/noErrorsInCallback.errors.txt
2014-09-12 13:35:07 -07:00

17 lines
766 B
Plaintext

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'.
==== 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'.
[].forEach(() => {
var two = new Bar({}); // No error?
~~
!!! error TS2345: Argument of type '{}' is not assignable to parameter of type 'string'.
});