Index: src/Parser/parser.yy
===================================================================
--- src/Parser/parser.yy	(revision 0e6cf54c9e9c06b78a7a07da28bb3f7b4a576347)
+++ src/Parser/parser.yy	(revision 6abb6dc94b1ba4f2beffaa34eb7f3bea3eebb309)
@@ -10,6 +10,6 @@
 // Created On       : Sat Sep  1 20:22:55 2001
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Jul 26 14:09:30 2024
-// Update Count     : 6733
+// Last Modified On : Sat Aug 10 09:47:05 2024
+// Update Count     : 6734
 //
 
@@ -2850,5 +2850,7 @@
 
 enumerator_list:
-	visible_hide_opt identifier_or_type_name enumerator_value_opt
+	// empty
+		{ SemanticError( yylloc, "enumeration must have a minimum of one enumerator, empty enumerator list is meaningless." );  $$ = nullptr; }
+	| visible_hide_opt identifier_or_type_name enumerator_value_opt
 		{ $$ = DeclarationNode::newEnumValueGeneric( $2, $3 ); }
 	| INLINE type_name
