teak-llvm/clang/test/Import/enum/Inputs/S.cpp
Raphael Isemann 612c524a90 [ASTImporter] Added test case for opaque enums
Reviewers: a.sidorin, a_sidorin

Reviewed By: a_sidorin

Subscribers: a_sidorin, martong, cfe-commits

Differential Revision: https://reviews.llvm.org/D50550

llvm-svn: 339506
2018-08-11 23:43:46 +00:00

7 lines
58 B
C++

enum E {
a = 1,
b = 2
};
enum OpaqueWithType : long;