aboutsummaryrefslogtreecommitdiff
path: root/packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.h
blob: 13e9496e3fd790abe9809127407fdc5c7f8bc5ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef __A_H__
#define __A_H__

class A
{
public:
  A();
  virtual int length();
};

#endif