1 // RUN: %clang_cc1 -fsyntax-only -verify %s 2 // PR4794 3 4 template <class T> class X 5 { 6 friend class Y; 7 }; 8 X<int> y; 9 10