ソースを参照

+ initial version (should not give warning)

Jonas Maebe 24 年 前
コミット
8e66ee79a6
1 ファイル変更13 行追加0 行削除
  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.