blob: 3753821087be4e92f0af4cb087321c119ab40fb1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <iostream>
#include <cassert>
using namespace std;
int
main ()
{
cerr << "test is running (stderr)" << endl;
//assert (false);
cout << "test is running (stdout)" << endl;
return 0;
//return 1;
}
|