peter 20 years ago
parent
commit
0772eab637
1 changed files with 44 additions and 0 deletions
  1. 44 0
      tests/webtbs/tw3634.pp

+ 44 - 0
tests/webtbs/tw3634.pp

@@ -0,0 +1,44 @@
+{ Source provided for Free Pascal Bug Report 3634 }
+{ Submitted by "Thomas Schatzl" on  2005-02-06 }
+{ e-mail:  }
+{$calling oldfpccall}
+
+type
+  PMedia=^TMedia;
+  TMedia=OBJECT
+    constructor Init;
+    destructor Done;
+    FUNCTION GetNumFrame:word;virtual;
+    FUNCTION GetCurFrame:word;virtual;
+  END;
+
+constructor TMedia.Init;
+begin
+end;
+
+destructor TMedia.Done;
+begin
+end;
+
+
+function TMedia.GetNumFrame : Word;
+begin
+  getnumframe:=4;
+end;
+
+function TMedia.GetCurFrame : Word;
+begin
+  getcurframe:=2;
+end;
+
+
+VAR    pos:longint;
+	m : PMedia;
+begin
+	new(m, Init());
+	pos := (m^.GetNumFrame)*298 div (m^.GetCurFrame);
+	writeln(pos);
+	if pos<>2*298 then
+	  halt(1);
+	dispose(m, Done);
+end.