Sign in
android
/
toolchain
/
llvm-project
/
refs/heads/kotlin-native-toolchain
/
.
/
lldb
/
test
/
API
/
lang
/
cpp
/
gmodules
/
pch.h
blob: dba4fee9a8c21d81b5d6ae86e15f138088c34501 [
file
] [
log
] [
blame
] [
edit
]
template
<
typename
T
>
class
GenericContainer
{
private
:
T storage
;
public
:
GenericContainer
(
T value
)
{
storage
=
value
;
};
};
typedef
GenericContainer
<int>
IntContainer
;
struct
Foo
{
class
Bar
;
Bar
*
bar
;
};