aboutsummaryrefslogtreecommitdiff
path: root/test/ast/bug-5889.cpp
blob: 5ce34d7c27abe09bf002403fb8e4d342663582f1 (plain)
1
2
3
4
5
#include <string>
std::string square(int& num) {
    num *= num;
    return "success";
}