* added missing %fail flags

This commit is contained in:
peter 2000-12-17 13:59:50 +00:00
parent 595bf10fa7
commit 0283ad41dc
4 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,5 @@
{ %FAIL }
{ derived from source for Bug Report 1203 }
{ in FPC mode this shouldn't compile }
{$mode objfpc}

View File

@ -1,3 +1,5 @@
{ %FAIL }
{ derived from Web Bug Report 1203 }
{$mode Delphi}
type

View File

@ -1,3 +1,5 @@
{ %FAIL }
{ derived from Web Bug Report 1203 }
{$mode objfpc}
type

View File

@ -4,7 +4,7 @@ type
pbyte = ^byte;
begin
if (pbyte(typeinfo(longint))^<>1 then
if pbyte(typeinfo(longint))^<>1 then
halt(1);
end.