fpc/tests/test/tfileexists3.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
171 B
ObjectPascal

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