mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			210 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			210 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract A {
 | 
						|
    uint public x = 0;
 | 
						|
    uint y = f();
 | 
						|
    function f() public returns (uint256) {
 | 
						|
        ++x;
 | 
						|
        return 42;
 | 
						|
    }
 | 
						|
}
 | 
						|
contract B is A {
 | 
						|
}
 | 
						|
// ====
 | 
						|
// compileToEwasm: also
 | 
						|
// ----
 | 
						|
// x() -> 1
 |