mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			516 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			516 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
	function g() external {
 | 
						|
		f();
 | 
						|
		h();
 | 
						|
		i();
 | 
						|
	}
 | 
						|
 | 
						|
	function g2() external payable {
 | 
						|
		i();
 | 
						|
	}
 | 
						|
 | 
						|
	function f() internal {
 | 
						|
		require(msg.value == 0);
 | 
						|
	}
 | 
						|
 | 
						|
	function h() internal {
 | 
						|
		assert(msg.value == 0); // should hold
 | 
						|
	}
 | 
						|
 | 
						|
	function i() internal {
 | 
						|
		assert(msg.value == 0); // should fail
 | 
						|
	}
 | 
						|
}
 | 
						|
// ====
 | 
						|
// SMTEngine: all
 | 
						|
// ----
 | 
						|
// Warning 6328: (261-283): CHC: Assertion violation happens here.\nCounterexample:\n\n\nTransaction trace:\nC.constructor()\nC.g2(){ msg.value: 1 }\n    C.i() -- internal call
 |