Sign in
ara-mdk
/
platform
/
external
/
stlport
/
a425ebceb7d24785e46f77e8e5464e7e50f45cca
/
.
/
test
/
compiler
/
movable.cpp
blob: 04590b98fe9ae46cc6c379a78b4db342501f350d [
file
] [
log
] [
blame
]
#include
<list>
#include
<vector>
#include
<string>
using
namespace
std
;
struct
S
:
public
string
{
};
void
test
()
{
list
<
S
>
l
;
l
.
push_back
(
S
()
);
vector
<
S
>
v
;
v
.
push_back
(
S
()
);
}