mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			258 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			258 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
|     fun()
 | |
| 
 | |
|     revert(0, 0)
 | |
| 
 | |
|     function fun()
 | |
|     {
 | |
|         return(1, 1)
 | |
| 
 | |
|         pop(sub(10, 5))
 | |
|     }
 | |
| 
 | |
|     pop(add(1, 1))
 | |
| }
 | |
| // ----
 | |
| // step: deadCodeEliminator
 | |
| //
 | |
| // {
 | |
| //     fun()
 | |
| //     revert(0, 0)
 | |
| //     function fun()
 | |
| //     { return(1, 1) }
 | |
| // }
 |