The inspection reports `Multiple-value [...] in single-value context` ``` go package main func demo() (int, string) { return 1, "2" } func main() { _ = demo() // error } ``` This should insert a blank identifier to compensate for the number of missing left side identifiers