mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			338 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			338 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
library L {
 | 
						|
    function g(function() internal returns (uint) _t) internal returns (uint) { return _t(); }
 | 
						|
}
 | 
						|
contract C {
 | 
						|
    using L for *;
 | 
						|
    function f() public returns (uint) {
 | 
						|
        return t.g();
 | 
						|
    }
 | 
						|
    function t() public pure returns (uint)  { return 7; }
 | 
						|
}
 | 
						|
// ====
 | 
						|
// compileToEwasm: false
 | 
						|
// ----
 | 
						|
// library: L
 | 
						|
// f() -> 7
 |