Sign in
ara-mdk
/
platform
/
external
/
stlport
/
e5f45d3719275b0fd752b94c3de2e6ca8bb097bb
/
.
/
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
()
);
}