HasNoEtherTest.sol 232 B

1234567891011
  1. pragma solidity ^0.4.18;
  2. import "../../contracts/ownership/HasNoEther.sol";
  3. contract HasNoEtherTest is HasNoEther {
  4. // Constructor with explicit payable — should still fail
  5. function HasNoEtherTest() public payable {
  6. }
  7. }