solidity/test/libsolidity/syntaxTests/duplicateFunctions/fallback_function_twice.sol

8 lines
179 B
Solidity

contract C {
uint x;
fallback() external { x = 2; }
fallback() external { x = 3; }
}
// ----
// DeclarationError 7301: (64-94): Only one fallback function is allowed.