mirror of openzeppelin-contracts
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openzeppelin-contracts/contracts/mocks/HasNoEtherTest.sol

13 lines
233 B

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