mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 02:39:40 +01: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.
 |