mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 09:46:06 +00:00

Summary: See the added test for a repro. Reviewers: sammccall Reviewed By: sammccall Subscribers: cfe-commits Tags: #clang Differential Revision: https://reviews.llvm.org/D58111 llvm-svn: 353840
12 lines
204 B
C++
12 lines
204 B
C++
// 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() {}
|
|
};
|