mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 19:39:31 +02:00
tests: fix test
git-svn-id: trunk@14474 -
This commit is contained in:
parent
87849e1fc6
commit
3fff90de80
@ -1,6 +1,7 @@
|
||||
{$ifdef fpc}
|
||||
{$mode delphi}
|
||||
{$endif}
|
||||
program tw9347b;
|
||||
|
||||
{$r-}
|
||||
uses
|
||||
@ -17,6 +18,12 @@ type
|
||||
end;
|
||||
|
||||
begin
|
||||
{ fails in Delphi 6, succeeds in Delphi 7 }
|
||||
SetPropValue(TBla.Create, 'int', 'true');
|
||||
{ fails in Delphi 6, succeeds in Delphi 7, fails in D2007 }
|
||||
try
|
||||
SetPropValue(TBla.Create, 'int', 'true');
|
||||
except
|
||||
on E: EVariantError do
|
||||
halt(0);
|
||||
end;
|
||||
halt(1);
|
||||
end.
|
||||
|
Loading…
Reference in New Issue
Block a user