Browse Source

no message

florian 22 years ago
parent
commit
6fd22f9b20
1 changed files with 30 additions and 0 deletions
  1. 30 0
      tests/webtbs/tw2763.pp

+ 30 - 0
tests/webtbs/tw2763.pp

@@ -0,0 +1,30 @@
+{ %version=1.1 }
+{ Source provided for Free Pascal Bug Report 2763 }
+{ Submitted by "Michael Van Canneyt" on  2003-11-04 }
+{ e-mail: [email protected] }
+program testv2;
+
+uses Variants;
+
+Type
+  TMyEnum = (One,Two,Three);
+
+Var
+  V : Variant;
+  E : TMyEnum;
+
+begin
+  E:=Two;
+  V:=E;
+  if v>1 then
+    begin
+      writeln('error 1');
+      halt(1);
+    end;
+  E:=V;
+  if ord(e)<>1 then
+    begin
+      writeln('error 2');
+      halt(1);
+    end;
+end.