ReactOS 0.4.15-dev-7942-gd23573b
movable.cpp
Go to the documentation of this file.
1#include <list>
2#include <vector>
3#include <string>
4
5using namespace std;
6
7struct S :
8 public string
9{
10};
11
12void test()
13{
14 list<S> l;
15 l.push_back( S() );
16
18 v.push_back( S() );
19}
20
r l[0]
Definition: byte_order.h:168
Definition: list.h:37
const GLdouble * v
Definition: gl.h:2040
char string[160]
Definition: util.h:11
void test()
Definition: movable.cpp:12
Definition: features.h:417
Definition: movable.cpp:9