Razvan Nitu
Razvan Nitu
…invariant after method
It appears that CTFE does not know how to destroy array literal temporaries that are put on stack. My solution first collects the temporary destructors that are created here [1]...
…lates instantiated with empty parens I am not sure this is the right fix. Essentially, what is going on here is that `ScopeExp`, as far as I could tell, is...
Is it possible to have 2 separate cache memories for the same processor? The idea would be to have 2 cache hierarchies that have different replacement policies. The processor would...
As per PR: https://github.com/dlang/dmd/pull/11846. This currently blocks the simplification of phobos via this new technology. This happens because libdparse does not recognize AliasAssignment. A PR was made to fix libdparse:...
```d int countWins(const uint[2] arr) { uint[2] copy = arr; copy[0] = 0; return 0; } enum force = countWins([4, 8]); ``` When passing `[4, 8]` to `countWins` the interpreter...