aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/smtCheckerTests/functions/functions_identity_1.sol
blob: 25a42db60220d2ac73491657aa650ef81adcb441 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
pragma experimental SMTChecker;
contract C
{
    function h(uint x) public pure returns (uint) {
        return x;
    }
    function g() public pure {
        uint x;
        x = h(42);
        assert(x > 0);
    }
}