aboutsummaryrefslogtreecommitdiffstats
path: root/meson/test cases/unit/5 compiler detection/trivial.cc
blob: 8aa907b4863eaab7d86fc9fe5e8a771e19bb9cac (plain)
1
2
3
4
5
6
#include<iostream>

int main(int argc, char **argv) {
  std::cout << "C++ seems to be working." << std::endl;
  return 0;
}