mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
20 lines
200 B
C++
20 lines
200 B
C++
#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() );
|
|
}
|
|
|