blob: 32b02901a53bad8ddab6c9cf8275a88780f275a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <iostream>
#include <list>
/*
*
* 9.8
*
*
*/
int main () {
std::list<std::string>::const_iterator cbeg; // to read
std::list<std::string>::iterator beg; // to write
return 0;
}
|