aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/075_fallback_function_with_arguments.sol
blob: 2c1d2a1b466dfc26e6c3e485ee3219268dbca28b (plain) (blame)
1
2
3
4
5
6
contract C {
    uint x;
    function(uint a) public { x = 2; }
}
// ----
// TypeError: (37-45): Fallback function cannot take parameters.