mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			301 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			301 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| pragma experimental SMTChecker;
 | |
| 
 | |
| contract C {
 | |
|     function f(uint a) internal pure returns (bool b) {
 | |
|         b = a > 5;
 | |
|     }
 | |
|     function g(uint a) public pure {
 | |
|         uint c = f(a) ? 3 : 4;
 | |
|         assert(c > 5);
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // Warning 6328: (203-216): CHC: Assertion violation happens here.
 |