mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	- This also adds support for internal library calls as a side-effect since they'll now be pulled into the internal dispatch automatically.
		
			
				
	
	
		
			22 lines
		
	
	
		
			375 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			375 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
| contract A {
 | |
|     function f() internal virtual returns (uint256) {
 | |
|         return 1;
 | |
|     }
 | |
| }
 | |
| 
 | |
| 
 | |
| contract B is A {
 | |
|     function f() internal override returns (uint256) {
 | |
|         return 2;
 | |
|     }
 | |
| 
 | |
|     function g() public returns (uint256) {
 | |
|         function() internal returns (uint256) ptr = A.f;
 | |
|         return ptr();
 | |
|     }
 | |
| }
 | |
| // ====
 | |
| // compileViaYul: also
 | |
| // ----
 | |
| // g() -> 1
 |