mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 02:39:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			161 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			161 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
program bug0036;
 | 
						|
 | 
						|
{Discovered by Daniel Mantione.}
 | 
						|
 | 
						|
var	a:array[0..31] of char;
 | 
						|
 | 
						|
begin
 | 
						|
   a:=' ';	{Incorrect Pascal statement, but why a protection error?}
 | 
						|
end.
 |