Files
openzeppelin-contracts/test/helpers/HasNoEtherTest.sol
2017-03-23 12:54:42 +00:00

12 lines
224 B
Solidity

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