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
[PowerPC] Collect some CallLowering arguments into a struct. [NFC]
[llvm-project.git]
/
lldb
/
packages
/
Python
/
lldbsuite
/
test
/
lang
/
cpp
/
nested-class-other-compilation-unit
/
shared.h
blob
627f49ab79c59085037cf52d1ead8741e9a08517
1
struct
OuterX
{
2
template
<
typename T
>
3
struct
Inner
{
4
int
oX_inner
=
42
;
5
};
6
};
7
8
struct
OuterY
{
9
template
<
typename T
>
10
struct
Inner
{
11
typename
OuterX
::
Inner
<
T
>
oY_inner
;
12
};
13
};
14
15
struct
WrapperB
;
16
17
WrapperB
*
foo
();