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.
21 lines
271 B
21 lines
271 B
4 years ago
|
pragma solidity ^0.7.0;
|
||
|
|
||
|
contract Modified {
|
||
|
uint counter;
|
||
|
|
||
|
modifier m {
|
||
|
_;
|
||
|
}
|
||
|
|
||
|
// When modifier coverage is on, branch cov should be 50%
|
||
|
// When off: 100%
|
||
|
function set(uint i)
|
||
|
m
|
||
|
public
|
||
|
payable
|
||
|
virtual
|
||
|
{
|
||
|
counter = counter + i;
|
||
|
}
|
||
|
}
|