int fun2();
int fun() { return fun2(); }
enum a = fun();
The above code gives an error message on line 2 (in fun()). This can be arbitrarily deep inside a call chain, gives no indication of the call that instantiated fun().
Comment #1 by robert.schadek — 2024-12-13T19:05:15Z