Skip to content

Instantly share code, notes, and snippets.

@sys27
Last active December 25, 2019 11:55
Show Gist options
  • Save sys27/7f99836911a3a174b619a68032cdcaaf to your computer and use it in GitHub Desktop.
Save sys27/7f99836911a3a174b619a68032cdcaaf to your computer and use it in GitHub Desktop.
static void A(Predicate<object> match)
{
if (match == null)
{
Helper();
}
match("");
}
[DoesNotReturn] // comment this line, and you will see warning on 'match("")' line 8: Dereference of a possibly null reference.
static void Helper()
{
throw new Exception();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment