Browse Source

no message

florian 21 years ago
parent
commit
c67af8573f
1 changed files with 6 additions and 1 deletions
  1. 6 1
      tests/tbs/tb0476.pp

+ 6 - 1
tests/tbs/tb0476.pp

@@ -3,8 +3,13 @@ const
 
 procedure p(const p);
   begin
+    if pchar(@p)^<>'a' then
+      begin
+        writeln('error');
+        halt(1);
+      end;
   end;
 
 begin
   p(e[1]);
-end.
+end.