Files
openzeppelin-contracts/contracts/mocks/HasNoEtherTest.sol
2018-01-15 16:11:45 -05:00

13 lines
233 B
Solidity

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