xref: /aosp_15_r20/external/clang/test/CXX/temp/temp.decls/temp.mem/p3.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 
3 template <class T> struct AA {
4   template <class C> virtual void g(C); // expected-error{{'virtual' cannot be specified on member function templates}}
5   virtual void f();
6 };
7