aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.robertl/eb77.C
blob: 3db45cc80079bc5e7a80c00f4c7eeeec9198b1e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#include <iostream>
#include <sstream>

using namespace std;

int
main(int, char* [])
{
  stringstream s;

  s << "line 1\nline 2\n\nline 4";
  s << std::ends;

  int nLine = 0;

  while( true ) {
    char line[100];
    s.get(line, 100);

    if( ! line ) {
      break;
    }

    ++nLine;
    std::cout << nLine << ": " << line << std::endl;

    if( nLine > 10 ) {  // stop infinite loop
      break;
    }
  }
  return 0;
}