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
[AMDGPU] Add True16 register classes.
[llvm-project.git]
/
lldb
/
test
/
API
/
commands
/
expression
/
class_template_specialization_empty_pack
/
main.cpp
blob
bc831604aed6d13e3b3f91c7b84c2533fe4d9355
1
template
<
typename N
,
class
...
P
>
2
struct
A
{
3
int
foo
() {
return
1
;}
4
};
5
6
int
main
() {
7
A
<
int
>
b
;
8
return
b
.
foo
();
// break here
9
}