mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			285 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			285 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
	function f(address _a) public view {
 | 
						|
		uint b1 = address(this).balance;
 | 
						|
		_a.staticcall("");
 | 
						|
		uint b2 = address(this).balance;
 | 
						|
		assert(b1 == b2); // should hold
 | 
						|
	}
 | 
						|
}
 | 
						|
// ====
 | 
						|
// SMTEngine: bmc
 | 
						|
// ----
 | 
						|
// Warning 9302: (88-105): Return value of low-level calls not used.
 |