revive-integration 1.1.0

revive compiler integration test cases
1
2
3
4
5
6
7
8
9
// SPDX-License-Identifier: MIT

pragma solidity >=0.6.2;

library L {
    function f() public returns(uint r) {
        r = 10;
    }
}