summaryrefslogtreecommitdiff
path: root/lldb/test/Shell/SymbolFile/DWARF/x86/Inputs/ModuleOwnership/A.h
blob: 0394d0a59de777252358b387e36d966bce903607 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "B.h" // -*- ObjC -*-

typedef int Typedef;

struct TopLevelStruct {
  int a;
};

typedef struct Struct_s {
  int a;
} Struct;

struct Nested {
  StructB fromb;
};

typedef enum Enum_e { a = 0 } Enum;

@interface SomeClass {
}
@property (readonly) int number;
@end

template <typename T> struct Template { T field; };
extern template struct Template<int>;

namespace Namespace {
template <typename T> struct InNamespace { T field; };
extern template struct InNamespace<int>;
}