Same as issue 21849, except this is to do with the number reported by the `-vcolumn' switch.
E.g:
---
void main()
{
string straße = 42;
}
---
Will report the byte column number in the conversion error.
---
test.d(12,22): Error: cannot implicitly convert expression 42 of type int to string
---
When the actual message it should generate is
---
test.d(12,21): Error: cannot implicitly convert expression 42 of type int to string
---
Comment #1 by robert.schadek — 2024-12-13T19:15:52Z