Reports unused types.
type user struct {
 FirstName string    `json:"firstname"`
 LastName  string    `json:"lastname"`
}

func main() {
 
}

The user type will be grayed out because it is not used anywhere in code.