Commit 25d164b8 by Martin v. Löwis

New test case.

From-SVN: r21169
parent 5f8ac7d1
namespace A{
struct X{};
X foo(X a){return a;}
void bar(X*){}
}
int main()
{
A::X x;
bar(&foo(x)); // WARNING - address of temporary
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment