mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 01:39:35 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			186 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			186 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
program bug0035;
 | 
						|
 | 
						|
{Discovered by Daniel Mantione.}
 | 
						|
 | 
						|
label	hallo;
 | 
						|
 | 
						|
begin
 | 
						|
   writeln('Hello');
 | 
						|
  begin
 | 
						|
hallo:		{Error message: Incorrect expression.}
 | 
						|
  end;
 | 
						|
  writeln('Hello again');
 | 
						|
end.
 |