Files
openzeppelin-contracts/test/helpers/HasNoEtherTest.sol
2017-11-23 10:57:36 -03:00

12 lines
232 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 {
}
}