deadcode

Lines of code that are impossible to reach by testing, even though the compiler has generated code for them. For example, line numbers, functions that have a body but are never called or referenced, or:

if (false) {
...
/* dead code */
}

By default, PureCoverage uses black for dead lines of code in the annotated source.

See also adjustments, inspected code, and tested code.