mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			22 lines
		
	
	
		
			511 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			511 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| pragma experimental SMTChecker;
 | |
| 
 | |
| contract C {
 | |
| 	function f() public pure {
 | |
| 		int16 x = 1;
 | |
| 		assert(~x == 0);
 | |
| 		x = 0xff;
 | |
| 		assert(~x == 0);
 | |
| 		x = 0x0f;
 | |
| 		assert(~x == 0xf0);
 | |
| 		x = -1;
 | |
| 		assert(~x != 0);
 | |
| 		x = -2;
 | |
| 		assert(~x == 1);
 | |
| 	}
 | |
| }
 | |
| // ----
 | |
| // Warning 6328: (91-106): CHC: Assertion violation happens here.
 | |
| // Warning 6328: (122-137): CHC: Assertion violation happens here.
 | |
| // Warning 6328: (153-171): CHC: Assertion violation happens here.
 | |
| // Warning 6328: (185-200): CHC: Assertion violation happens here.
 |