From f8c433832e2bc2832dec3fd8ebe8b01453104455 Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Tue, 7 May 2019 22:22:25 -0500 Subject: Add support for char enums - #119 --- tests/include/test.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'tests/include') diff --git a/tests/include/test.h b/tests/include/test.h index 2e4cf08..9a28dc0 100644 --- a/tests/include/test.h +++ b/tests/include/test.h @@ -73,6 +73,11 @@ enum ENUM5 { enum15 = (1 << (1 & 1)) }; +enum ENUM7 { + enum17 = '\0', + enum18 = 'A' +}; + typedef void * VOIDPTR; typedef int * INTPTR; -- cgit v1.2.3