aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/219_memory_arrays_not_resizeable.sol
blob: 93d8cd429835391c2affd6e5420bd8081b007e56 (plain) (blame)
1
2
3
4
5
6
7
8
contract C {
    function f() public {
        uint[] memory x;
        x.length = 2;
    }
}
// ----
// TypeError: (72-80): Expression has to be an lvalue.