enhancementgood first issue
Repository metrics
- Stars
- (3,862 stars)
- PR merge metrics
- (PR metrics pending)
Description
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
}