mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			247 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			247 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| abstract contract a {
 | |
|     function f() virtual public;
 | |
| }
 | |
| contract b is a {
 | |
|     function f() public override { super.f(); }
 | |
| }
 | |
| // ----
 | |
| // TypeError: (110-117): Member "f" not found or not visible after argument-dependent lookup in contract super b.
 |