mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 05:28:07 +02:00
* new bug checks added
This commit is contained in:
parent
d65ec7ac1c
commit
899b0adc4b
22
tests/webtbs/tw1374.pp
Normal file
22
tests/webtbs/tw1374.pp
Normal file
@ -0,0 +1,22 @@
|
||||
{ Source provided for Free Pascal Bug Report 1374 }
|
||||
{ Submitted by "Christian Keck" on 2001-02-01 }
|
||||
{ e-mail: C.Keck@gmx.net }
|
||||
program realtest;
|
||||
|
||||
var temp : longint;
|
||||
low : byte;
|
||||
high : byte;
|
||||
DLL_Version : extended{real};
|
||||
|
||||
begin
|
||||
temp:= 14340; { This value is normaly retrieved form an external DLL }
|
||||
|
||||
low:= ((temp shr 8) and $FF);
|
||||
high:= (temp and $FF); { Some calculation... }
|
||||
DLL_Version:= high + (low/100); { to get an real result }
|
||||
|
||||
{ ... }
|
||||
|
||||
if DLL_Version < 4.56 then { 4.560000000000000E+000 < 4.56 ?!?! }
|
||||
writeln ('Error! 4.56 < 4.56');
|
||||
end.
|
16
tests/webtbs/tw1375.pp
Normal file
16
tests/webtbs/tw1375.pp
Normal file
@ -0,0 +1,16 @@
|
||||
{ Source provided for Free Pascal Bug Report 1375 }
|
||||
{ Submitted by "Bill Rayer" on 2001-02-01 }
|
||||
{ e-mail: lingolanguage@hotmail.com }
|
||||
(*
|
||||
Should be able to use null ptr as 2nd param of InvalidateRect()
|
||||
Compiles in Delphi 4:
|
||||
dcc32 fpc1
|
||||
Does not compile in FPC:
|
||||
ppc386 -Sd fpc1
|
||||
*)
|
||||
|
||||
program test1;
|
||||
uses windows;
|
||||
begin
|
||||
InvalidateRect (HWND(0), pointer(0), TRUE);
|
||||
end.
|
Loading…
Reference in New Issue
Block a user