mirror of
				https://gitlab.com/freepascal.org/fpc/source.git
				synced 2025-11-04 12:39:38 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			131 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			131 B
		
	
	
	
		
			ObjectPascal
		
	
	
	
	
	
{$R+}
 | 
						|
var
 | 
						|
 | 
						|
  c : cardinal;
 | 
						|
  i : integer;
 | 
						|
  w : word;
 | 
						|
  b : byte;
 | 
						|
  si : shortint;
 | 
						|
 | 
						|
begin
 | 
						|
  w:=c;
 | 
						|
  i:=c;
 | 
						|
  b:=c;
 | 
						|
  b:=si;
 | 
						|
end.
 | 
						|
 | 
						|
 | 
						|
 |