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
/
InterfaceStubs
/
cxxdeduction-guide.cpp
blob
53b10784480d7596d404e82ab4a791435e0b9578
1
// RUN: %clang_cc1 -o - -emit-interface-stubs -std=c++17 %s | FileCheck %s
2
3
// CHECK: --- !ifs-v1
4
// CHECK-NEXT: IfsVersion: 3.0
5
// CHECK-NEXT: Target:
6
// CHECK-NEXT: Symbols:
7
// CHECK-NEXT: ...
8
9
// CXXDeductionGuideDecl
10
template
<
typename T
>
struct
A
{
A
();
A
(
T
); };
11
A
() ->
A
<
int
>;