14 lines
167 B
C
14 lines
167 B
C
|
#ifndef C_H
|
||
|
#define C_H
|
||
|
#include <A/ADT.h>
|
||
|
|
||
|
namespace llvm {
|
||
|
class D {
|
||
|
struct Q {
|
||
|
unsigned a, b, c, d;
|
||
|
};
|
||
|
SmallVector<Q, 4> q;
|
||
|
};
|
||
|
} // namespace llvm
|
||
|
#endif
|