mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 08:19:36 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			167 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			167 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
uses
 | 
						|
   dpmiexcp;
 | 
						|
{ Two cardinal type bugs }
 | 
						|
var
 | 
						|
  c : cardinal;
 | 
						|
begin
 | 
						|
  c:=$80000000;
 | 
						|
  writeln(c);
 | 
						|
  c:=$80001234;
 | 
						|
  writeln(c);
 | 
						|
  c:=$ffffffff;
 | 
						|
  writeln(c); 
 | 
						|
end.
 |