Nick Treleaven
Nick Treleaven
Yes, this change will only catch existing suffixes running into an identifier. The more general errors could be done afterwards - now there's a way to handle them in the...
If using a repository is to replace `~branch`, we would also need a way to specify a git branch for `dub run`. E.g. currently this works (though master is only...
> It would be possible to make this work, but wouldn't that be equivalent to suppressing an unused variable warning? Not if it is initialized and used in the branch....
> i++ returns the same value is in CPP/1 ++i I think this is a gotcha when porting Cpp1 code to Cpp2. A good rule of thumb would be not...
BTW There are other examples such as [here](https://tour.dlang.org/tour/en/basics/type-qualifiers) that don't declare `main`.
> D allows you to specify non-ref or ref for the parameter, but just use one opApply that accepts by ref. I've made a spec update: https://github.com/dlang/dlang.org/pull/3699
Walter wants to revert the deprecation: https://github.com/dlang/dmd/pull/15326
Problems with `@property`: https://gist.github.com/JinShil/40db71a5e32fd29924e68863000e6de1
Draft DIP on `op=` for properties: https://github.com/dlang/DIPs/pull/97
@maxhaton > D should provide an annotated quotation of the offending code. `dmd -verrors=context` already does this: ``` ../old/sample/enuminit.d(5): Error: cannot implicitly convert expression `E.a` of type `E` to `void*`...