```d extern int x; /****/ int y; ```
(How) can I get the information that `x` is `extern` and `y` is not? There seems to be no `__traits` for it.
Quirin Schroll via Digitalmars-d-learn Fri, 11 Oct 2024 09:36:37 -0700
```d extern int x; /****/ int y; ```
(How) can I get the information that `x` is `extern` and `y` is not? There seems to be no `__traits` for it.