[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Bug in error message for table.concat
- From: Roberto Ierusalimschy <roberto@...>
- Date: Mon, 15 Feb 2021 13:30:07 -0300
> This shows up most clearly on 32-bit ARM (which is what the IRC user who
> reported it was using); [...]
>
> > table.concat({{}, {}}, ',')
> stdin:1: invalid value (table) at index 539390232 in table for 'concat'
A more portable example:
> table.concat({}, "", math.maxinteger, math.maxinteger)
stdin:1: invalid value (nil) at index -1 in table for 'concat'
-- Roberto