Comment #0 by alphaglosined — 2023-04-24T04:02:46Z
Some more compiler hooks that need converting to templates, with an example use case:
```d
extern(C) void main() {
string str = "Abc";
foreach(dchar c; str) {
}
}
```
Compile with -betterC:
undefined reference to `_aApplycd1'
All in rt/aApply.d
Comment #1 by robert.schadek — 2024-12-07T13:42:37Z