xref: /llvm-project/clang/test/Modules/Inputs/def.h (revision 4abe0a8d82667092aea76f3942f9ab13fdc3a7d3)
1224d8a74SDouglas Gregor #include "def-include.h"
25dbf4eb6SDouglas Gregor 
35dbf4eb6SDouglas Gregor 
45dbf4eb6SDouglas Gregor 
55dbf4eb6SDouglas Gregor @interface A {
65dbf4eb6SDouglas Gregor @public
75dbf4eb6SDouglas Gregor   int ivar;
85dbf4eb6SDouglas Gregor }
94a814568SDouglas Gregor @end
104a814568SDouglas Gregor 
117dab26b8SDouglas Gregor @interface Def
127dab26b8SDouglas Gregor - defMethod;
137dab26b8SDouglas Gregor @end
144a814568SDouglas Gregor 
157dab26b8SDouglas Gregor #ifdef __cplusplus
167dab26b8SDouglas Gregor class Def2 {
177dab26b8SDouglas Gregor public:
187dab26b8SDouglas Gregor   void func();
197dab26b8SDouglas Gregor };
20*4abe0a8dSRichard Smith 
21*4abe0a8dSRichard Smith namespace Def3NS {
22*4abe0a8dSRichard Smith   class Def3 {
23*4abe0a8dSRichard Smith   public:
24*4abe0a8dSRichard Smith    void func();
25*4abe0a8dSRichard Smith   };
26*4abe0a8dSRichard Smith }
277dab26b8SDouglas Gregor #endif
28