summaryrefslogtreecommitdiffstats
path: root/lldb/test/Shell/Reproducer/Functionalities/Inputs/foo.cpp
blob: 91f27388d0ca11e615f3ae4ddaa2d425af38e1a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
class Foo {
public:
  Foo(int i, double d) : m_i(i), m_d(d){};

private:
  int m_i;
  int m_d;
};

int main(int argc, char **argv) {
  static Foo foo(1, 2.22);
  return 0;
}
OpenPOWER on IntegriCloud