================
@@ -106,3 +106,15 @@ enum class EnumClassWithoutValues : int {};
enum EnumWithoutValues {};
}
+
+extern "C" {
+enum ExternCEnum {
+ ec1,
+ ec2
+};
+
+typedef enum {
+ tec1,
+ tec2
+} IgnoredTypedefEnum;
+}
----------------
EugeneZelenko wrote:```suggestion } // extern "C" ``` https://github.com/llvm/llvm-project/pull/178233 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
