mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			386 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			386 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
| 	function f(a, r) -> x { x := g(a, g(r, r)) }
 | |
| 	function g(b, s) -> y { y := f(b, f(s, s)) }
 | |
| 	let y := g(calldatasize(), 7)
 | |
| }
 | |
| // ----
 | |
| // step: expressionInliner
 | |
| //
 | |
| // {
 | |
| //     function f(a, r) -> x
 | |
| //     { x := g(a, f(r, f(r, r))) }
 | |
| //     function g(b, s) -> y
 | |
| //     {
 | |
| //         y := f(b, g(s, f(s, f(s, s))))
 | |
| //     }
 | |
| //     let y_1 := f(calldatasize(), g(7, f(7, f(7, 7))))
 | |
| // }
 |