blob: c0203ef8c518b89aca3cddc01035a7ca9daf06df [file] [log] [blame]
Ilya Biryukov6597fdd2019-02-12 14:21:44 +00001// RUN: not %clang_cc1 -x c++ -std=c++17 -fsyntax-only %s
2template <typename U>
3class Imp {
4 template <typename F>
5 explicit Imp(F f);
6};
7
8template <typename T>
9class Cls {
10 explicit Imp() : f() {}
11};