Files
codeql/csharp/ql/test/query-tests/Nullness
Tom Hvitved 3b0d1599ad C#: Teach guards library about unique assignments
For example, in

```
void M(object x)
{
    var y = x == null ? 1 : 2;
    if (y == 2)
        x.ToString();
}
```

the guard `y == 2` implies that the guard `x == null` must be false,
as the assignment of `2` to `y` is unique.
2018-11-30 17:43:10 +01:00
..
2018-11-30 17:41:31 +01:00
2018-11-30 17:02:05 +01:00
2018-11-30 17:02:05 +01:00
2018-11-30 17:41:31 +01:00
2018-11-30 17:41:31 +01:00
2018-11-30 17:02:05 +01:00
2018-11-30 17:02:05 +01:00
2018-11-30 17:41:31 +01:00
2018-11-30 17:41:31 +01:00
2018-11-30 17:02:05 +01:00
2018-11-30 17:41:31 +01:00
2018-11-30 17:41:31 +01:00