mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			692 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			692 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    uint public x = msg.value - 10; // can underflow
 | 
						|
    constructor() payable {}
 | 
						|
}
 | 
						|
 | 
						|
contract D {
 | 
						|
	function h() internal returns (uint) {
 | 
						|
		return msg.value - 10; // can underflow
 | 
						|
	}
 | 
						|
    function f() public {
 | 
						|
        unchecked {
 | 
						|
            h(); // unchecked here does not mean h does not underflow
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
// ====
 | 
						|
// SMTEngine: all
 | 
						|
// ----
 | 
						|
// Warning 3944: (33-47): CHC: Underflow (resulting value less than 0) happens here.\nCounterexample:\nx = 0\n\nTransaction trace:\nC.constructor()
 | 
						|
// Warning 3944: (160-174): CHC: Underflow (resulting value less than 0) happens here.\nCounterexample:\n\n\nTransaction trace:\nD.constructor()\nD.f()\n    D.h() -- internal call
 |