contract ReceiverPays {
address ower = msg.sender; constructor () payable { } function test() external { require(msg.sender == ower); } }