Sign in
rust
/
rust-lang
/
llvm-project
/
35c537490f7804c0a68fcabcd20ecf96357b74ff
/
.
/
lldb
/
packages
/
Python
/
lldbsuite
/
test
/
lang
/
cpp
/
gmodules
/
pch.h
blob: dba4fee9a8c21d81b5d6ae86e15f138088c34501 [
file
] [
log
] [
blame
]
template
<
typename
T
>
class
GenericContainer
{
private
:
T storage
;
public
:
GenericContainer
(
T value
)
{
storage
=
value
;
};
};
typedef
GenericContainer
<int>
IntContainer
;
struct
Foo
{
class
Bar
;
Bar
*
bar
;
};