summaryrefslogtreecommitdiffstats
path: root/tests/test/config-test/driver.cxx
blob: db5b8a77cddaad4bd80560efb9e9da421359a1d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// file      : tests/test/config-test/driver.cxx -*- C++ -*-
// copyright : Copyright (c) 2014-2019 Code Synthesis Ltd
// license   : MIT; see accompanying LICENSE file

#include <iostream>

using namespace std;

int
main (int argc, char* argv[])
{
  if (argc != 2)
  {
    cerr << "usage: " << argv[0] << " <arg>" << endl;
    return 1;
  }

  cout << argv[1] << endl;
}