mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			231 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			231 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
pragma experimental SMTChecker;
 | 
						|
 | 
						|
contract C
 | 
						|
{
 | 
						|
	uint y;
 | 
						|
 | 
						|
	function f() public {
 | 
						|
		if (y != 1)
 | 
						|
			g();
 | 
						|
		assert(y == 1);
 | 
						|
	}
 | 
						|
 | 
						|
	function g() internal {
 | 
						|
		y = 1;
 | 
						|
		h();
 | 
						|
	}
 | 
						|
 | 
						|
	function h() internal {
 | 
						|
		f();
 | 
						|
		assert(y == 1);
 | 
						|
	}
 | 
						|
}
 | 
						|
// ----
 |