mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			376 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			376 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| interface Super {
 | |
|     function test1() external returns (uint256);
 | |
|     function test2() external returns (uint256);
 | |
|     function test3() external returns (uint256);
 | |
| }
 | |
| 
 | |
| interface Sub is Super {
 | |
|     function test1() external returns (uint256);
 | |
|     function test2() external override returns (uint256);
 | |
|     function test3() external override(Super) returns (uint256);
 | |
| }
 | |
| 
 | |
| // ----
 |