| 642 | |
| 643 | describe('works with readonly arrays', () => { |
| 644 | interface Thing { |
| 645 | bar: { |
| 646 | foo: ReadonlyArray<{ baz: number }>; |
| 647 | }; |
| 648 | } |
| 649 | |
| 650 | const a: Thing = { |
| 651 | bar: { foo: [ {baz: 1} ] } |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…