llvm-project/clang/test/Sema/crash-deduction-guide-acces...

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
204 B
C++
Raw Normal View History

// RUN: not %clang_cc1 -x c++ -std=c++17 -fsyntax-only %s
template <typename U>
class Imp {
template <typename F>
explicit Imp(F f);
};
template <typename T>
class Cls {
explicit Imp() : f() {}
};