foo: proc options(main);
declare i fixed decimal init (42);
select (i); /* Non-Compliant - SELECT without OTHERWISE statement */
when (0) put list ('i = 0');
when (1) put list ('i = 1');
end;
put list ('Continuation'); /* This statement will not be executed */
end;