"Source: Text/System/State.text";
"Line: 1208";
"Date: Thu Sep 25 21:32:21 2025";
"Main: Fri Sep 26 14:29:19 2025";
// original file: Text/System/State.text, line: 1208
// Example: H1E13 ()
print "Example: H1E13";
ei := GetEchoInput();
SetEchoInput(true);
// no-test
procedure always_fails(x)
    error Error(x);
end procedure;
try
    always_fails(1);
    always_fails(2);  // we never get here
catch e
    print "In catch handler";
    error "Error calling procedure with parameter: ", e`Object;
end try;
SetEchoInput(ei);
