mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			309 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			309 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    function f() public pure returns (uint32 x) {
 | 
						|
        uint32 a;
 | 
						|
        uint32 b;
 | 
						|
        uint32 c;
 | 
						|
        assembly {
 | 
						|
            a := 1
 | 
						|
            b := 2
 | 
						|
            c := 3
 | 
						|
        }
 | 
						|
        x = a + b + c;
 | 
						|
    }
 | 
						|
}
 | 
						|
// ====
 | 
						|
// compileToEwasm: also
 | 
						|
// compileViaYul: also
 | 
						|
// ----
 | 
						|
// f() -> 6
 |