1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
// RUN: clang-cc -fsyntax-only %s // PR5057 namespace std { class X { public: template<typename T> friend struct Y; }; } namespace std { template<typename T> struct Y { }; }