aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/nameAndTypeResolution/171_assignment_to_const_array_vars.sol
blob: b9e9aa7aeb7690b3c74c8cfeb6aa1916e8924891 (plain) (blame)
1
2
3
4
5
contract C {
    uint[3] constant x = [uint(1), 2, 3];
}
// ----
// TypeError: (17-53): Constants of non-value type not yet implemented.