Files
codeql/csharp/ql/test/query-tests/Nullness
Tom Hvitved 984e01ecf0 C#: Remove FPs from cs/dereferenced-value-may-be-null
Apply a conservative approach by filtering out results for accesses to
captured nullable values, when there is an (implicit) call to the capturing
callable which is `null`-guarded. For example:

```
bool M(int? i, IEnumerable<int> @is)
{
    if (i.HasValue)
        return @is.Any(j => j == i.Value); // GOOD
    return false;
}
```
2022-02-08 14:01:57 +01:00
..
2018-11-30 17:41:31 +01:00
2018-12-07 09:40:49 +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