I believe the following code is not producing the expected result or diagnostics. ```c #pragma safety enable int * _Opt f(); int main(){ int i = 0; int * _Opt p = f(); int *p2 = p ? p : &i; } ```
I believe the following code is not producing the expected result or diagnostics.