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() );
}