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

38 lines
789 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/typeIdentityConsidersBrands.ts (2 errors) ====
class X{
name: string;
}
class Y{
name: string;
}
class X_1 {
private name: string;
}
class Y_1 {
private name: string;
}
function foo(arg: X){}
var a = new Y();
var b = new X();
a = b; // ok
foo(a); // ok
var a2 = new Y_1();
var b2 = new X_1();
function foo2(arg: X_1) { }
a2 = b2; // should error
~~
!!! Type 'X_1' is not assignable to type 'Y_1':
!!! Private property 'name' cannot be reimplemented.
foo2(a2); // should error
~~
2014-07-25 04:39:50 +02:00
!!! Argument of type 'Y_1' is not assignable to parameter of type 'X_1'.
2014-07-13 01:04:16 +02:00