mirror of
https://github.com/github/codeql.git
synced 2026-04-27 17:55:19 +02:00
For example, in
```
void M(object x)
{
var y = x != null ? "" : null;
if (y != null)
x.ToString();
}
```
the guard `y != null` implies that the guard `x != null` must be true.