[ create a new paste ] login | about

Link: http://codepad.org/qD9jTP9k    [ raw code | fork ]

Niels - C++, pasted on Aug 17:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <vector>
#include <string>

class Foo: public std::vector<std::string>
{
};


int main()
{
  Foo foo;
  Foo::iterator begin = foo.begin();
  Foo::const_iterator end = foo.end();
}


Output:
No errors or program output.


Create a new paste based on this one


Comments: