mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			224 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			224 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
|     function f(a:u256) -> x:u256 { x := a }
 | |
|     let y:u256 := f(7:u256)
 | |
| }
 | |
| // ====
 | |
| // step: expressionInliner
 | |
| // yul: true
 | |
| // ----
 | |
| // {
 | |
| //     function f(a:u256) -> x:u256
 | |
| //     { x := a }
 | |
| //     let y:u256 := 7:u256
 | |
| // }
 |