mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			354 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			354 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract C
 | |
| {
 | |
| 	function h(uint x) public pure returns (uint) {
 | |
| 		return x;
 | |
| 	}
 | |
| 	function g() public pure {
 | |
| 		uint x;
 | |
| 		x = (h)(0);
 | |
| 		assert(x > 0);
 | |
| 	}
 | |
| }
 | |
| 
 | |
| // ====
 | |
| // SMTEngine: all
 | |
| // ----
 | |
| // Warning 6328: (131-144): CHC: Assertion violation happens here.\nCounterexample:\n\nx = 0\n\nTransaction trace:\nC.constructor()\nC.g()\n    C.h(0) -- internal call
 |