mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			331 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			331 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    function f(uint256 a, uint256 b) public returns (uint256) {
 | 
						|
        a >>= b;
 | 
						|
        return a;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
// ====
 | 
						|
// compileToEwasm: also
 | 
						|
// ----
 | 
						|
// f(uint256,uint256): 0x4266, 0x0 -> 0x4266
 | 
						|
// f(uint256,uint256): 0x4266, 0x8 -> 0x42
 | 
						|
// f(uint256,uint256): 0x4266, 0x10 -> 0
 | 
						|
// f(uint256,uint256): 0x4266, 0x11 -> 0
 |