fpc/tests/test/tfileexists1.pp
florian 488c389b9b + support FILEEXISTS(...) in preprocessor expressions, resolves #39527
+ tests
  * tscannerfile.readpreproc sets preproc_pattern correctly for quoted strings
2023-03-20 23:17:09 +01:00

8 lines
156 B
ObjectPascal

begin
{$if fileexists('tfileexists1.pp')}
halt(0);
{$else fileexists('tfileexists1.pp')}
halt(1);
{$endif fileexists('tfileexists1.pp')}
end.