1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3// PR47944 5template <class T> class X6{7 friend class Y;8};9X<int> y;10 11