mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			691 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			691 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| abstract contract D {
 | |
| 	function d() external virtual;
 | |
| }
 | |
| 
 | |
| contract C {
 | |
| 
 | |
| 	int x;
 | |
| 	D d;
 | |
| 
 | |
| 	function set(int n) public {
 | |
| 		x = n;
 | |
| 	}
 | |
| 
 | |
| 	function f() public {
 | |
| 		x = 0;
 | |
| 		try d.d() {
 | |
| 			//assert(x == 0); // should fail, x can be anything here
 | |
| 		} catch {
 | |
| 			assert(x == 0); // should hold, all changes to x has been reverted
 | |
| 			assert(x == 1); // should fail
 | |
| 		}
 | |
| 	}
 | |
| }
 | |
| // ====
 | |
| // SMTEngine: all
 | |
| // SMTIgnoreCex: yes
 | |
| // ----
 | |
| // Warning 6328: (320-334): CHC: Assertion violation happens here.
 | |
| // Info 1180: Reentrancy property(ies) for :C:\n!(<errorCode> = 1)\n<errorCode> = 0 -> no errors\n<errorCode> = 1 -> Assertion failed at assert(x == 0)\n<errorCode> = 2 -> Assertion failed at assert(x == 1)\n
 |