Files
codeql/csharp/ql/test/query-tests
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
..
2021-07-01 16:09:11 +02:00
2021-10-04 13:15:26 +02:00
2021-04-21 10:42:06 +02:00
2021-07-01 16:09:11 +02:00
2022-02-02 19:25:30 +01:00
2021-07-01 16:09:11 +02:00