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
Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git]
/
clang
/
test
/
Modules
/
Inputs
/
gmodules-deduction-guide.h
blob
47b5931083af1c3e61cdb40da2b40df1ecb594c1
1
struct
A
{
2
};
3
4
template
<
class
T
>
5
struct
S
{
6
S
(
const
A
&);
7
};
8
9
S
(
const
A
&) ->
S
<
A
>;
10
11
typedef decltype
(
S
(
A
()))
Type0
;