We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@trusted
TL;DR: Test case for formatter.d:
formatter.d
testFormatNode!(AssertExpression)("static assert(() @trusted { return bar()(3); }() == 4);");
Was trying to update libdparse for dlang.org (dlang/dlang.org#2758) and hit this bug. The code:
assert(() @trusted { return bar()(3); }() == 4);
from here is turned into:
assert (() @trusteddo { return bar()(3); }() == 4)
by formatter, which is obviously invalid.
The text was updated successfully, but these errors were encountered:
related to #346
Sorry, something went wrong.
Fixed by #399
@Geod24 fyi you can link pull requests in issues (and link issues in pull requests) to automatically close them with a reference:
I don't have that kind of power in dlang-community ;)
dlang-community
Successfully merging a pull request may close this issue.
TL;DR: Test case for
formatter.d
:Was trying to update libdparse for dlang.org (dlang/dlang.org#2758) and hit this bug.
The code:
from here is turned into:
by formatter, which is obviously invalid.
The text was updated successfully, but these errors were encountered: