mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			637 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			637 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C {
 | |
|     function f(uint a) internal pure returns (uint b) {
 | |
|         require(a < 1000);
 | |
|         return a * a;
 | |
|     }
 | |
|     function g(uint a) internal pure returns (uint b) {
 | |
|         require(a < 1000);
 | |
|         return a + 100;
 | |
|     }
 | |
|     function h(uint a) public pure {
 | |
|         uint c = a < 5 ? g(a) : f(a);
 | |
|         assert(c >= 25);
 | |
|         assert(c < 20); // should fail
 | |
|     }
 | |
| }
 | |
| // ====
 | |
| // SMTEngine: all
 | |
| // SMTIgnoreCex: yes
 | |
| // ----
 | |
| // Warning 6328: (345-359): CHC: Assertion violation happens here.
 | |
| // Info 1391: CHC: 3 verification condition(s) proved safe! Enable the model checker option "show proved safe" to see all of them.
 |