blob: 7ea10e7c3be80e5080419efadfbc771d78ae68e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
// file : tests/test/config-test/driver.cxx -*- C++ -*-
// license : MIT; see accompanying LICENSE file
#include <iostream>
#undef NDEBUG
#include <cassert>
using namespace std;
int
main (int argc, char* argv[])
{
if (argc != 2)
{
cerr << "usage: " << argv[0] << " <arg>" << endl;
return 1;
}
cout << argv[1] << endl;
}
|