bad.ts 94 B

1234567
  1. interface Bar1 {
  2. baz: string;
  3. }
  4. function foo1(bar: Bar1 | null) {
  5. return bar!.baz;
  6. }