compiles this with -betterC
```
import std.conv : to;
static assert(0, to!string(0));
extern(C) int main()
{
return 0;
}
```
to obtain
> Error: `TypeInfo` cannot be used with -betterC
this is because the code for to!string is incompatible with -betterC but in this case it is only statically evaluated.
Comment #1 by robert.schadek — 2024-12-13T19:23:58Z