mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			530 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			530 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
pragma experimental SMTChecker;
 | 
						|
contract C {
 | 
						|
	uint a;
 | 
						|
	constructor(uint x) public {
 | 
						|
		a = x;
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
abstract contract B is C {
 | 
						|
	constructor(uint x) public {
 | 
						|
		a = x;
 | 
						|
	}
 | 
						|
}
 | 
						|
 | 
						|
contract A is B {
 | 
						|
	constructor(uint x) C(x + 2) B(x + 1) public {
 | 
						|
		assert(a == x + 1);
 | 
						|
	}
 | 
						|
}
 | 
						|
// ----
 | 
						|
// Warning: (221-226): Overflow (resulting value larger than 2**256 - 1) happens here
 | 
						|
// Warning: (212-217): Overflow (resulting value larger than 2**256 - 1) happens here
 | 
						|
// Warning: (251-256): Overflow (resulting value larger than 2**256 - 1) happens here
 |