I believe the following code is not producing the expected result or diagnostics. ```c #pragma flow enable int main() { goto target; int i = 1; target: int j = i; } ```