mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			282 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			282 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
pragma experimental SMTChecker;
 | 
						|
 | 
						|
contract C
 | 
						|
{
 | 
						|
	function f(uint _x) public pure returns (uint) {
 | 
						|
		return _x;
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
contract D
 | 
						|
{
 | 
						|
	C c;
 | 
						|
	function g(uint _y) public view {
 | 
						|
		uint z = c.f(_y);
 | 
						|
		assert(z == _y);
 | 
						|
	}
 | 
						|
}
 | 
						|
// ----
 | 
						|
// Warning 4661: (191-206): Assertion violation happens here
 |