Developer Documentation
minimalExecutionTest.cc
1// C++ Minimal execution test
2
3#include <iostream>
4
5class test {
6
7 public:
8 test() {
9 std::cout << "Constructor Minimal execution test" << std::endl;
10 };
11};
12
13int main()
14{
15 test a;
16 std::cout << "Minimal execution test!";
17 return 0;
18}