aboutsummaryrefslogtreecommitdiffstats
path: root/packages/sol-cov/test/fixtures/contracts/SolcovIgnore.sol
blob: a7977ffb4d1cafbc88fe645367d6566c34be62ba (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
pragma solidity ^0.4.21;

contract SolcovIgnore {
    uint public storedData;

    function set(uint x) public {
        /* solcov ignore next */
        storedData = x;
    }

    /* solcov ignore next */
    function get() constant public returns (uint retVal) {
        return storedData;
    }
}

/* solcov ignore next */
contract Ignore {
    function ignored() public returns (bool) {
        return false;
    }
}