Implement special handling for `init`. Below is an example where a false positive is reported. ``` var _x *int func init() { _x = new(int) } func test() { _ = *_x // false positive reported here } ```