Reports code that can never be executed because there exists no control flow path to the code from the rest of the program.

Example:

func _() int {
 print(1)
 return 2
 println() // This code is unreachable 
 return 0
}