mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			297 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			297 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    function f() pure public {}
 | 
						|
    function f(address) pure public {}
 | 
						|
    function g() pure public {
 | 
						|
        assembly {
 | 
						|
            let x := f
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
// ----
 | 
						|
// DeclarationError: (155-156): Multiple matching identifiers. Resolving overloaded identifiers is not supported.
 |