mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-11-19 05:31:07 +01:00
*** empty log message ***
This commit is contained in:
parent
b136cecacd
commit
2eec6a0897
20
tests/tbs/tb0399.pp
Normal file
20
tests/tbs/tb0399.pp
Normal file
@ -0,0 +1,20 @@
|
||||
procedure error;
|
||||
begin
|
||||
writeln('Problem with octal constants');
|
||||
halt(1);
|
||||
end;
|
||||
|
||||
begin
|
||||
if 8<>&10 then
|
||||
error;
|
||||
if 1<>&1 then
|
||||
error;
|
||||
if 64<>&100 then
|
||||
error;
|
||||
if 33<>&41 then
|
||||
error;
|
||||
if 33<>&41 then
|
||||
error;
|
||||
if 12345678<>&57060516 then
|
||||
error;
|
||||
end.
|
||||
Loading…
Reference in New Issue
Block a user