mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			301 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			301 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
pragma experimental SMTChecker;
 | 
						|
 | 
						|
contract C {
 | 
						|
	function f(bool b) public pure {
 | 
						|
		uint v = 1;
 | 
						|
		if (b)
 | 
						|
			v &= 1;
 | 
						|
		assert(v == 1);
 | 
						|
	}
 | 
						|
}
 | 
						|
// ----
 | 
						|
// Warning 9149: (106-112): Assertion checker does not yet implement this assignment operator.
 | 
						|
// Warning 4661: (116-130): Assertion violation happens here
 |