summaryrefslogblamecommitdiff
path: root/tests/exec/constructor2.cpp
blob: b23c02ae12a28233f8d0f397b4fd7046831eb4b8 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14













                               
#include <iostream>

class A {
public:
  A();
};

A::A() {
  std::cout << "hello world\n";
}

int main() {
  A a;
}