summaryrefslogtreecommitdiffstats
path: root/test cases/cmake/18 skip include files/main.cpp
blob: 95079615ab06130736b9cffd2e370df7f4727519 (plain)
1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include <cmMod.hpp>

using namespace std;

int main(void) {
  cmModClass obj("Hello");
  cout << obj.getStr() << endl;
  return 0;
}