mirror of
https://github.com/swc-project/swc.git
synced 2024-12-03 00:54:25 +03:00
32 lines
646 B
TypeScript
32 lines
646 B
TypeScript
// @strict: true
|
|
|
|
declare const o1: undefined | { b: string };
|
|
o1?.["b"];
|
|
|
|
declare const o2: undefined | { b: { c: string } };
|
|
o2?.["b"].c;
|
|
o2?.b["c"];
|
|
|
|
declare const o3: { b: undefined | { c: string } };
|
|
o3["b"]?.c;
|
|
o3.b?.["c"];
|
|
|
|
declare const o4: { b?: { c: { d?: { e: string } } } };
|
|
o4.b?.["c"].d?.e;
|
|
o4.b?.["c"].d?.["e"];
|
|
|
|
declare const o5: { b?(): { c: { d?: { e: string } } } };
|
|
o5.b?.()["c"].d?.e;
|
|
o5.b?.()["c"].d?.["e"];
|
|
o5["b"]?.()["c"].d?.e;
|
|
o5["b"]?.()["c"].d?.["e"];
|
|
|
|
// GH#33744
|
|
declare const o6: <T>() => undefined | ({ x: number });
|
|
o6<number>()?.["x"];
|
|
|
|
// GH#36031
|
|
o2?.["b"]!.c;
|
|
o2?.["b"]!["c"];
|
|
o2?.["b"]!.c!;
|
|
o2?.["b"]!["c"]!; |