blob: 3620ce3d539f908e81d2a0599d1a4488f03e89cc [file] [log] [blame]
namespace N { template<typename T> struct A { friend int f(A); }; }
// It would seem like this variable should be called 'c'.
// But that makes the original problem disappear...
int e = f(N::A<int>());
#include "a.h"
#include "b.h"