Vladimir Panteleev
Vladimir Panteleev
I suspect that this is a regression; has anyone tried older kernels or btrfs-progs versions?
Hey, thank you for the detailed response! Good to know about `state:modified.vars` and that it is on the roadmap :) Thank you for the insight about `state:modified`. The explanation makes...
> I had to modify a runnable test since now you will have an extra destructor call for the copy. Question, why copy and not move? Would moving not avoid...
Yes, unfortunately this introduces a regression. Adjusted test case from 14321: ```d import std.stdio; struct Foo { int id; this(int id) { this.id = id; writeln("CTor"); } this(this) { writeln("Postblit...
Bad news, this also causes a regression: ```d import std.stdio; struct Foo { int id; // this(int id) { // this.id = id; // writeln("CTor ", id); // } this(this)...
Thank you. If anything, it seems iffy to me that `aa[key] = value` is an initialization of `aa`. I would expect that to maybe get lowered to either `aa =...
Those are standard headers that should be included with your compiler. Please note that the project does build in CI. It's possible that there is a problem with newer compiler...
I don't have access to a Windows machine at the moment, but what happens if you click inside the functions window and start typing?
Could you please clarify what you mean by "The highlighted line, and the line specified, is not actually the line in which the function is defined"? In any case, it...