mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			366 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			366 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| pragma experimental SMTChecker;
 | |
| 
 | |
| contract C
 | |
| {
 | |
| 	function f(uint x, bool b) public pure {
 | |
| 		require(x < 10);
 | |
| 		for (; x < 10; ) {
 | |
| 			++x;
 | |
| 		}
 | |
| 		assert(x > 15);
 | |
| 	}
 | |
| }
 | |
| // ====
 | |
| // SMTSolvers: z3
 | |
| // ----
 | |
| // Warning: (66-72): Unused function parameter. Remove or comment out the variable name to silence this warning.
 | |
| // Warning: (142-156): Assertion violation happens here
 |