]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - packages/Python/lldbsuite/test/lang/cpp/incomplete-types/a.h
Vendor import of lldb trunk r256945:
[FreeBSD/FreeBSD.git] / packages / Python / lldbsuite / test / lang / cpp / incomplete-types / a.h
1 #ifndef __A_H__
2 #define __A_H__
3
4 class A
5 {
6 public:
7   A();
8   virtual int length();
9 };
10
11 #endif