[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / test / Sema / crash-deduction-guide-access.cpp
blobc0203ef8c518b89aca3cddc01035a7ca9daf06df
1 // RUN: not %clang_cc1 -x c++ -std=c++17 -fsyntax-only %s
2 template <typename U>
3 class Imp {
4 template <typename F>
5 explicit Imp(F f);
6 };
8 template <typename T>
9 class Cls {
10 explicit Imp() : f() {}