| 1 | interface I { x: number, y : string } |
| 2 | interface J { y : number } |
| 3 | interface K extends I, J { x: string } // error: x is number in I |
| 4 | function foo(k: K) { |
| 5 | (k.x: number); // error: x is string in K |
nothing calls this directly
no outgoing calls
no test coverage detected