mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 21:07:54 +02:00
17 lines
323 B
ObjectPascal
17 lines
323 B
ObjectPascal
{ Problem with nested comments -- as you can probably see }
|
|
{ but it does give out kind of a funny error output :) }
|
|
|
|
|
|
{$UNDEF VP}
|
|
|
|
{$IFDEF Windows} ssss {$ENDIF} {No Syntax Error}
|
|
|
|
{$IFDEF VP}
|
|
{$D+}{$R+}
|
|
{$ELSE}
|
|
{$IFDEF Windows} ssss {$ENDIF} {Syntax Error at: Col 25 }
|
|
{$ENDIF}
|
|
|
|
BEGIN
|
|
END.
|