Explorar el Código

+ initial version (should not give warning)

Jonas Maebe hace 24 años
padre
commit
8e66ee79a6
Se han modificado 1 ficheros con 13 adiciones y 0 borrados
  1. 13 0
      tests/tbs/tb0376.pp

+ 13 - 0
tests/tbs/tb0376.pp

@@ -0,0 +1,13 @@
+{%OPT=-Sew}
+{$mode objfpc}
+
+function f: longint;
+var
+   a: longint absolute result;
+begin
+   a := 5;
+end;
+
+begin
+  f;
+end.