Files
openzeppelin-contracts/contracts/mocks/HasNoEtherTest.sol
artiebits 5daaf60d11 Make contracts 4.24 compatible (#951)
* Make contracts 4.24 compatible
2018-06-13 11:34:32 -07:00

13 lines
221 B
Solidity

pragma solidity ^0.4.24;
import "../../contracts/ownership/HasNoEther.sol";
contract HasNoEtherTest is HasNoEther {
// Constructor with explicit payable — should still fail
constructor() public payable {
}
}