Commit 6d1a9047 by Martin v. Löwis

New file.

From-SVN: r27521
parent 92da7074
void foo(){}
namespace Bar{
template<class X>
class Y{
friend void foo(Y<X>){}
};
}
int main()
{
Bar::Y<int> y;
foo(y);
foo();
}
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