|
| 1 | +=== tests/cases/compiler/intersectionsAndOptionalProperties.ts === |
| 2 | +declare let x: { a?: number, b: string }; |
| 3 | +>x : Symbol(x, Decl(intersectionsAndOptionalProperties.ts, 0, 11)) |
| 4 | +>a : Symbol(a, Decl(intersectionsAndOptionalProperties.ts, 0, 16)) |
| 5 | +>b : Symbol(b, Decl(intersectionsAndOptionalProperties.ts, 0, 28)) |
| 6 | + |
| 7 | +declare let y: { a: null, b: string }; |
| 8 | +>y : Symbol(y, Decl(intersectionsAndOptionalProperties.ts, 1, 11)) |
| 9 | +>a : Symbol(a, Decl(intersectionsAndOptionalProperties.ts, 1, 16)) |
| 10 | +>b : Symbol(b, Decl(intersectionsAndOptionalProperties.ts, 1, 25)) |
| 11 | + |
| 12 | +declare let z: { a: null } & { b: string }; |
| 13 | +>z : Symbol(z, Decl(intersectionsAndOptionalProperties.ts, 2, 11)) |
| 14 | +>a : Symbol(a, Decl(intersectionsAndOptionalProperties.ts, 2, 16)) |
| 15 | +>b : Symbol(b, Decl(intersectionsAndOptionalProperties.ts, 2, 30)) |
| 16 | + |
| 17 | +x = y; // Error |
| 18 | +>x : Symbol(x, Decl(intersectionsAndOptionalProperties.ts, 0, 11)) |
| 19 | +>y : Symbol(y, Decl(intersectionsAndOptionalProperties.ts, 1, 11)) |
| 20 | + |
| 21 | +x = z; // Error |
| 22 | +>x : Symbol(x, Decl(intersectionsAndOptionalProperties.ts, 0, 11)) |
| 23 | +>z : Symbol(z, Decl(intersectionsAndOptionalProperties.ts, 2, 11)) |
| 24 | + |
| 25 | +// Repro from #36604 |
| 26 | + |
| 27 | +interface To { |
| 28 | +>To : Symbol(To, Decl(intersectionsAndOptionalProperties.ts, 5, 6)) |
| 29 | + |
| 30 | + field?: number; |
| 31 | +>field : Symbol(To.field, Decl(intersectionsAndOptionalProperties.ts, 9, 14)) |
| 32 | + |
| 33 | + anotherField: string; |
| 34 | +>anotherField : Symbol(To.anotherField, Decl(intersectionsAndOptionalProperties.ts, 10, 19)) |
| 35 | +} |
| 36 | + |
| 37 | +type From = { field: null } & Omit<To, 'field'>; |
| 38 | +>From : Symbol(From, Decl(intersectionsAndOptionalProperties.ts, 12, 1)) |
| 39 | +>field : Symbol(field, Decl(intersectionsAndOptionalProperties.ts, 14, 14)) |
| 40 | +>Omit : Symbol(Omit, Decl(lib.es5.d.ts, --, --)) |
| 41 | +>To : Symbol(To, Decl(intersectionsAndOptionalProperties.ts, 5, 6)) |
| 42 | + |
| 43 | +function foo(v: From) { |
| 44 | +>foo : Symbol(foo, Decl(intersectionsAndOptionalProperties.ts, 14, 49)) |
| 45 | +>v : Symbol(v, Decl(intersectionsAndOptionalProperties.ts, 16, 13)) |
| 46 | +>From : Symbol(From, Decl(intersectionsAndOptionalProperties.ts, 12, 1)) |
| 47 | + |
| 48 | + let x: To; |
| 49 | +>x : Symbol(x, Decl(intersectionsAndOptionalProperties.ts, 17, 7)) |
| 50 | +>To : Symbol(To, Decl(intersectionsAndOptionalProperties.ts, 5, 6)) |
| 51 | + |
| 52 | + x = v; // Error |
| 53 | +>x : Symbol(x, Decl(intersectionsAndOptionalProperties.ts, 17, 7)) |
| 54 | +>v : Symbol(v, Decl(intersectionsAndOptionalProperties.ts, 16, 13)) |
| 55 | + |
| 56 | + x.field = v.field; // Error |
| 57 | +>x.field : Symbol(To.field, Decl(intersectionsAndOptionalProperties.ts, 9, 14)) |
| 58 | +>x : Symbol(x, Decl(intersectionsAndOptionalProperties.ts, 17, 7)) |
| 59 | +>field : Symbol(To.field, Decl(intersectionsAndOptionalProperties.ts, 9, 14)) |
| 60 | +>v.field : Symbol(field, Decl(intersectionsAndOptionalProperties.ts, 14, 14)) |
| 61 | +>v : Symbol(v, Decl(intersectionsAndOptionalProperties.ts, 16, 13)) |
| 62 | +>field : Symbol(field, Decl(intersectionsAndOptionalProperties.ts, 14, 14)) |
| 63 | +} |
| 64 | + |
0 commit comments