| 3 | * @flow |
| 4 | */ |
| 5 | class A { |
| 6 | f(tainted : $Tainted<string>) { |
| 7 | // The Tainted annotation should still flow. |
| 8 | var safe = tainted; |
| 9 | // This should give a warning. |
| 10 | var loc : string = safe; |
| 11 | } |
| 12 | } |
nothing calls this directly
no outgoing calls
no test coverage detected