Reports unused exported types in the main package and in tests. For more information about exported identifiers, refer to Exported identifiers at go.dev.
type User struct {}

func main() {}

The User struct type is declared but never used in the code. This type will be grayed out.