mirror of
				https://github.com/ethereum/solidity
				synced 2023-10-03 13:03:40 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			366 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			366 B
		
	
	
	
		
			Solidity
		
	
	
	
	
	
contract C {
 | 
						|
    // Check that visibility is also enforced for the receive ether function.
 | 
						|
    receive() {}
 | 
						|
}
 | 
						|
// ----
 | 
						|
// SyntaxError: (95-107): No visibility specified. Did you intend to add "external"?
 | 
						|
// TypeError: (95-107): Receive ether function must be payable, but is "nonpayable".
 | 
						|
// TypeError: (95-107): Receive ether function must be defined as "external".
 |