When fallback is not payable you will not be able to receive ethers.
pragma solidity 0.4.4;
contract A {
function () public {}
}
pragma solidity 0.4.4;
contract A {
function () public payable {}
}
payable-fallback on Solhint's documentation.