mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			432 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			432 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract A {
 | |
| 	function foo() external virtual view returns(uint) { return 5; }
 | |
| }
 | |
| contract B is A {
 | |
| 	function foo() external virtual override view returns(uint) { return 5; }
 | |
| }
 | |
| contract C is A {
 | |
| 	function foo() external virtual override view returns(uint) { return 5; }
 | |
| }
 | |
| contract X is B, C {
 | |
| 	uint public override foo;
 | |
| }
 | |
| // ----
 | |
| // TypeError 4327: (305-313): Public state variable needs to specify overridden contracts "B" and "C".
 |