In Visual Studio 2019 I can set the Nullable Option in the Build-Properties to Annotation. When I read in the docs for this settings:
Variables of a reference type, string for example, are non-nullable. All nullability warnings are disabled.
Now I wonder what the exact use of this setting is. The variables are non-nullable, but there are no warnings. The Non-Nullable-Feature of C# 8 only generates warnings. Why is there a setting which says the variables are non-nullable but there are no warnings?