mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			351 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			351 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| {
 | |
|     let a
 | |
|     function f() -> x { x := g() }
 | |
|     function g() -> y { y := f() }
 | |
|     function h() -> z { z := g() }
 | |
|     a := h()
 | |
| }
 | |
| // ----
 | |
| // step: circularReferencesPruner
 | |
| //
 | |
| // {
 | |
| //     let a
 | |
| //     a := h()
 | |
| //     function f() -> x
 | |
| //     { x := g() }
 | |
| //     function g() -> y
 | |
| //     { y := f() }
 | |
| //     function h() -> z
 | |
| //     { z := g() }
 | |
| // }
 |