mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			394 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			394 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| pragma experimental SMTChecker;
 | |
| 
 | |
| contract C {
 | |
| 	uint gleft;
 | |
| 
 | |
| 	function f() public payable {
 | |
| 		gleft = gasleft();
 | |
| 
 | |
| 		fi();
 | |
| 
 | |
| 		assert(gleft == gasleft());
 | |
| 		assert(gleft >= gasleft());
 | |
| 	}
 | |
| 
 | |
| 	function fi() internal view {
 | |
| 		assert(gleft == gasleft());
 | |
| 	}
 | |
| }
 | |
| // ----
 | |
| // Warning 6328: (124-150): CHC: Assertion violation happens here.
 | |
| // Warning 6328: (219-245): CHC: Assertion violation happens here.
 |