Intermediate
Go (Golang)
Q55 / 100
What is the go vet tool?
Correct! Well done.
Incorrect.
The correct answer is B) A static analysis tool that reports suspicious constructs like misuse of sync primitives, printf format strings, and more
B
Correct Answer
A static analysis tool that reports suspicious constructs like misuse of sync primitives, printf format strings, and more
Explanation
go vet catches bugs that the compiler misses, such as wrong printf format verbs or copying a mutex by value.
Progress
55/100