repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-tidy][modernize-use-starts-ends-with] Fix operator rewriting false negative...
[llvm-project.git]
/
clang
/
test
/
Sema
/
crash-deduction-guide-access.cpp
blob
c0203ef8c518b89aca3cddc01035a7ca9daf06df
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
};
7
8
template
<
typename T
>
9
class
Cls
{
10
explicit
Imp
() :
f
() {}
11
};