mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			146 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			146 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
| 	function f(a) {
 | |
| 		f(1)
 | |
| 	}
 | |
| 	f(mload(0))
 | |
| }
 | |
| // ----
 | |
| // step: fullInliner
 | |
| //
 | |
| // {
 | |
| //     { f(mload(0)) }
 | |
| //     function f(a)
 | |
| //     { f(1) }
 | |
| // }
 |