mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			381 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			381 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
pragma experimental SMTChecker;
 | 
						|
 | 
						|
contract C
 | 
						|
{
 | 
						|
	function f(uint8 x) public pure returns (uint8) {
 | 
						|
		x = 100;
 | 
						|
		uint8 y = x * 3;
 | 
						|
		assert(y == 44);
 | 
						|
		x = 128;
 | 
						|
		y = x * 4;
 | 
						|
		assert(y == 0);
 | 
						|
		return y;
 | 
						|
	}
 | 
						|
}
 | 
						|
// ----
 | 
						|
// Warning 2661: (120-125): Overflow (resulting value larger than 255) happens here
 | 
						|
// Warning 2661: (163-168): Overflow (resulting value larger than 255) happens here
 |