Hi Jonathan,
On 2023-09-01 08:49, Jonathan Wakely wrote:
> On Thu, 31 Aug 2023, 17:05 Alejandro Colomar via Gcc,
> wrote:
>
>> Hi!
>>
>> I've been confused for some time with a compilation error that
>> pointed to a slightly-off location. I wasn't seeing that I used
>> a temporary variable in a
On Thu, 31 Aug 2023, 17:05 Alejandro Colomar via Gcc,
wrote:
> Hi!
>
> I've been confused for some time with a compilation error that
> pointed to a slightly-off location. I wasn't seeing that I used
> a temporary variable in a constant expression. The code could be
> reduced to:
>
> $ cat cons
Hi!
I've been confused for some time with a compilation error that
pointed to a slightly-off location. I wasn't seeing that I used
a temporary variable in a constant expression. The code could be
reduced to:
$ cat const.c
int
main(void)
{
int x = 42;
_Static_assert(0 || 7 > x,