| 2 | async function ft<T>(a: T) {} |
| 3 | |
| 4 | class C { |
| 5 | async m() {} |
| 6 | async mt<T>(a: T) {} |
| 7 | static async m(a) {} |
| 8 | static async mt<T>(a: T) {} |
| 9 | } |
| 10 | |
| 11 | var e = async function () {}; |
| 12 | var et = async function<T> (a: T) {}; |
nothing calls this directly
no outgoing calls
no test coverage detected