From cd8a263f85a4ade35ec59bbe8360ece880f681ce Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Fri, 18 Jan 2019 21:52:29 -0600 Subject: Recursive node support, enum expressions, or/and/not --- tests/include/test.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'tests/include') diff --git a/tests/include/test.h b/tests/include/test.h index 8a8c579..64bdbb2 100644 --- a/tests/include/test.h +++ b/tests/include/test.h @@ -60,6 +60,12 @@ typedef enum ENUM4 { enum12 } ENUM4; +enum ENUM5 { + enum13 = (1 << 2), + enum14 = ((1 << 3) | 1), + enum15 = (1 << (1 & 1)) +}; + typedef void * VOIDPTR; typedef int * INTPTR; -- cgit v1.2.3