gdb
[deliverable/binutils-gdb.git] / gdb / testsuite / gdb.python / py-pp-maint.c
index f65e5f755e3fda14ea6226a36be604553f259c24..e91193abdd038fed34b136e8894b403c1d790076 100644 (file)
 
 #include <string.h>
 
+enum flag_enum
+  {
+    FLAG_1 = 1,
+    FLAG_2 = 2,
+    FLAG_3 = 4,
+    ALL = FLAG_1 | FLAG_2 | FLAG_3
+  };
+
+enum flag_enum fval;
+
 struct function_lookup_test
 {
   int x,y;
This page took 0.046785 seconds and 4 git commands to generate.