mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			575 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			575 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    function f(uint a, uint b) public pure returns (uint x) {
 | 
						|
        x = a + b;
 | 
						|
    }
 | 
						|
    function g(uint8 a, uint8 b) public pure returns (uint8 x) {
 | 
						|
        x = a + b;
 | 
						|
    }
 | 
						|
}
 | 
						|
// ====
 | 
						|
// compileViaYul: also
 | 
						|
// compileToEwasm: also
 | 
						|
// ----
 | 
						|
// f(uint256,uint256): 5, 6 -> 11
 | 
						|
// f(uint256,uint256): -2, 1 -> -1
 | 
						|
// f(uint256,uint256): -2, 2 -> FAILURE, hex"4e487b71", 0x11
 | 
						|
// f(uint256,uint256): 2, -2 -> FAILURE, hex"4e487b71", 0x11
 | 
						|
// g(uint8,uint8): 128, 64 -> 192
 | 
						|
// g(uint8,uint8): 128, 127 -> 255
 | 
						|
// g(uint8,uint8): 128, 128 -> FAILURE, hex"4e487b71", 0x11
 |