Browse Source

*** empty log message ***

florian 25 years ago
parent
commit
830f2c0659
1 changed files with 13 additions and 0 deletions
  1. 13 0
      tests/tbs/tb0334.pp

+ 13 - 0
tests/tbs/tb0334.pp

@@ -0,0 +1,13 @@
+uses
+   sysutils;
+
+var
+   s : tintset;
+
+begin
+   if sizeof(s)<>sizeof(integer) then
+     begin
+        writeln('Wrong size of Sysutils.TIntegerSet');
+        halt(1);
+     end;
+end.