Files
swift-mirror/test/DebugInfo/Inputs/Macro.h
Adrian Prantl 6a412bd2f5 Debug Info: Fix a bug when decoding the source file for a Clang Decl
that was defined using a Macro: Use the file of the presumed location,
not of the SourceBuffer.

rdar://problem/49181568
2019-03-26 14:16:11 -07:00

8 lines
105 B
C

#define MY_ENUM(NAME) \
enum NAME : int NAME; \
enum NAME : int
MY_ENUM(macro_enum) {
zero = 0
};