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.
		
			
				
	
	
		
			18 lines
		
	
	
		
			285 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			285 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
library L {
 | 
						|
    function f() internal returns (uint) {
 | 
						|
        return 66;
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
contract C {
 | 
						|
    function g() public returns (uint) {
 | 
						|
        function() internal returns(uint) ptr;
 | 
						|
        ptr = L.f;
 | 
						|
        return ptr();
 | 
						|
    }
 | 
						|
}
 | 
						|
// ====
 | 
						|
// compileViaYul: also
 | 
						|
// ----
 | 
						|
// g() -> 66
 |