summaryrefslogtreecommitdiffstats
path: root/lldb/lit/Expr/Inputs/basic.cpp
blob: 80a79379a2eccf9809b031adad787c83e59020d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class Patatino {
private:
  long tinky;

public:
  Patatino(long tinky) { this->tinky = tinky; }
};

int main(void) {
  Patatino *a = new Patatino(26);
  return 0;
}
OpenPOWER on IntegriCloud