Errors in cparse.d don't pass a `loc` parameter to diagnostic routines, so typically messages end up being on the last column for a line, or on the wrong line entirely.
e.g
---
_Alignas(double)
float alignas_var;
---
emits the following error:
---
test.c(2,1): Error: `_Alignas` not supported
float alignas_var;
^
Comment #1 by nick — 2022-10-30T18:43:32Z
_Alignas is now supported. Are there any other errors with wrong loc?
Comment #2 by robert.schadek — 2024-12-13T19:16:36Z