mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			223 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			223 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract Base {
 | 
						|
	uint x;
 | 
						|
	uint private t;
 | 
						|
}
 | 
						|
 | 
						|
contract C is Base {
 | 
						|
 | 
						|
	uint private z;
 | 
						|
	function f(uint y) public {
 | 
						|
		require(x < 10);
 | 
						|
		require(y < 100);
 | 
						|
		z = x + y;
 | 
						|
		assert(z < 150);
 | 
						|
	}
 | 
						|
}
 | 
						|
// ====
 | 
						|
// SMTEngine: all
 | 
						|
// ----
 |