[InstCombine] Preserve NSW flags for `lshr (mul nuw X, C1), C2 -> mul nuw nsw X,...
[llvm-project.git] / clang / test / SemaTemplate / instantiate-friend-class.cpp
blob32aa3014b9cbfe3ef1afbe1bcc982c7f333776e3
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
3 // PR4794
5 template <class T> class X
7 friend class Y;
8 };
9 X<int> y;