If you have a code like this:
void f(int? i) {
if (i == null) {
return;
}
// work...
}
And you want to make sure you test the null
case, you can't actually be sure it is covered, because the return
is marked as uncoverable.
This is a request to start tracking it as coverable.
CC @liamappelbe