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.4.3;
|
|
|
|
// 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) payable {
|
|
}
|
|
|
|
function a() payable {
|
|
Test(0x00).paySomeone.value(msg.value)(0x00, 0x00);
|
|
}
|
|
} |