mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
		
			204 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			204 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
interface I {
 | 
						|
    function g() external pure;
 | 
						|
}
 | 
						|
 | 
						|
using {I.g} for uint;
 | 
						|
// ----
 | 
						|
// TypeError 4167: (56-59): Only file-level functions and library functions can be attached to a type in a "using" statement
 |