Example following: ```cs string? s1 = null; Option<string> t1 = s1; string s2 = null; Option<string> t2 = s2; ``` It causes warning if nullable is enabled but otherwise it does not produce an error.
Example following:
It causes warning if nullable is enabled but otherwise it does not produce an error.