mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			563 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			563 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| pragma experimental SMTChecker;
 | |
| 
 | |
| contract C {
 | |
|     function add(uint16 a, uint16 b) public pure returns (uint16) {
 | |
|         unchecked {
 | |
|             return a + b; // overflow not reported
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     function f(uint16 a) public pure returns (uint16) {
 | |
|         return add(a, 0x100) + 0x100; // should overflow on `+ 0x100`
 | |
|     }
 | |
| }
 | |
| // ----
 | |
| // Warning 4984: (273-294): CHC: Overflow (resulting value larger than 65535) happens here.\nCounterexample:\n\na = 65024\n = 0\n\nTransaction trace:\nC.constructor()\nC.f(65024)\n    C.add(65024, 256) -- internal call
 |