From-SVN: r23566
This commit is contained in:
Martin v. Löwis 1998-11-08 03:17:27 +00:00
parent c36ae80ff2
commit 6b57b51d11
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
// Build don't link:
namespace A{
void f(int);
}
class X{
friend void A::f(int);
};