mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 02:39:40 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			238 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			238 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{ %version=1.1 }
 | 
						|
{ %fail }
 | 
						|
uses
 | 
						|
  sysutils;
 | 
						|
 | 
						|
begin
 | 
						|
  // this should fail with a runtime error
 | 
						|
  try
 | 
						|
    raise ETestException.Create;
 | 
						|
  except
 | 
						|
    AcquireExceptionObject;
 | 
						|
    ReleaseExceptionObject;
 | 
						|
    ReleaseExceptionObject;
 | 
						|
  end;
 | 
						|
end.
 |