mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			201 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			201 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C1 {
 | 
						|
  function f() external pure returns(int) { return 42; }
 | 
						|
}
 | 
						|
 | 
						|
contract C is C1 {
 | 
						|
   int override f;
 | 
						|
}
 | 
						|
// ----
 | 
						|
// TypeError: (96-110): Override can only be used with public state variables.
 |