blob: 26d1d51d2730cf5f954891cd36604e27855185f6 (
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;
}
|