Comment #0 by qs.il.paperinik — 2024-07-24T12:04:07Z
The following should work:
```d
const name = "x";
mixin(iq{int $(name) = 10;});
```
But it fails because `mixin` has no understanding of interpolated strings and requires (among other alternatives) appending `.text` to every `i` string literal, which requires a needless `import` and thus a dependency. String mixin and interpolated strings are core-language features and those should work together.
Comment #1 by robert.schadek — 2024-12-13T19:36:41Z