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.
12 lines
306 B
12 lines
306 B
8 years ago
|
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);
|
||
|
}
|
||
|
}
|