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
This is similar to #74
int a[2]; int (&&f())[2] { return static_cast<int(&&)[2]>(a); }
is transformed to
int a[2]; int (&&)[2] f() { return static_cast<int (&&)[2]>(a); }
And
void g() { } void (&&f())() { return g; }
into
void g() { } void (&&)() f() { return g; }
The text was updated successfully, but these errors were encountered:
Hello @languagelawyer,
thanks for spotting that. A fix is on its way.
Sorry, something went wrong.
afa13ec
Merge pull request #125 from andreasfertig/fixIssue124
8915c6c
Fixed #124: Correct return type of a function returning a rvalue ref.
No branches or pull requests
This is similar to #74
is transformed to
And
into
The text was updated successfully, but these errors were encountered: