aboutsummaryrefslogtreecommitdiffstats
path: root/test/libsolidity/syntaxTests/array/length/const_cannot_be_fractional.sol
blob: 397bbbcd842762149c0b2383d0ea9c3aae78f555 (plain) (blame)
1
2
3
4
5
6
contract C {
    fixed constant L = 10.5;
    uint[L] ids;
}
// ----
// TypeError: (51-52): Array with fractional length specified.