Skip to content
New issue

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

Add possibility to generate tests for function with rvalue parameters #64

Closed
ladisgin opened this issue Feb 2, 2022 · 0 comments · Fixed by #551
Closed

Add possibility to generate tests for function with rvalue parameters #64

ladisgin opened this issue Feb 2, 2022 · 0 comments · Fixed by #551
Assignees
Labels
cpp-syntax Related to generation tests for C++ enhancement New feature or request

Comments

@ladisgin
Copy link
Member

ladisgin commented Feb 2, 2022

//function example
int double_abs_rvalue_reference(int&& a) {
    if (a < 0) {
        return -2 * a;
    }
    return a;
}
@ladisgin ladisgin added cpp-syntax Related to generation tests for C++ enhancement New feature or request labels Feb 2, 2022
@ladisgin ladisgin moved this to Todo in UTBot C/C++ Apr 26, 2022
Repository owner moved this from Todo to Done in UTBot C/C++ Dec 1, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
cpp-syntax Related to generation tests for C++ enhancement New feature or request
Projects
Status: Done
Development

Successfully merging a pull request may close this issue.

2 participants