In main FA repository, there was an issue reported fluentassertions/fluentassertions#569.
To keep it short, the user used ?. operator:
int? val = null;
val?.Should().Be(400);
instead of regular
Do you think it is possible to detect such scenario and suggest code fix?