aboutsummaryrefslogblamecommitdiffstats
path: root/test/libsolidity/syntaxTests/conversion/not_allowed_conversion_to_int_array_pointer2.sol
blob: 060c97078d3da232f38e9802499677fcdd90da12 (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                     
contract C {
    uint[] a;
    uint[] b;
    function f() public view {
        uint[] storage c = a;
        uint[] memory d = b;
        d = uint[](c);
    }
}
// ----