1234567891011121314151617181920212223242526 |
- { %RESULT=202 }
- {$ifdef unix}
- {$define nocheck}
- {$endif}
- {$S+}
- { This tests the stack checking routine on those }
- { targets which support it. }
- procedure recursive;
- var s: string;
- begin
- s := 'blahblah';
- recursive;
- end;
- Begin
- {$ifndef nocheck}
- Recursive;
- {$else}
- { Simulate the correct error code }
- RunError(202);
- {$endif}
- end.
|