| 14 | |
| 15 | function testUnions() { |
| 16 | interface Circle { |
| 17 | kind: "circle"; |
| 18 | radius: number; |
| 19 | sideLength?: never; |
| 20 | } |
| 21 | |
| 22 | interface Square { |
| 23 | kind: "square"; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…