Code coverage for Solidity smart-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.
|
|
|
pragma solidity ^0.5.0;
|
|
|
|
|
|
|
|
// This is for a test that verifies solcover can instrument a
|
|
|
|
// another kind of long CallExpression chain
|
|
|
|
contract Test {
|
|
|
|
function paySomeone(address x, address y) public payable {
|
|
|
|
}
|
|
|
|
|
|
|
|
function a() public payable {
|
|
|
|
Test(0x00).paySomeone.value(msg.value)(0x0000000000000000000000000000000000000000, 0x0000000000000000000000000000000000000000);
|
|
|
|
}
|
|
|
|
}
|