Index: libcfa/prelude/builtins.c
===================================================================
--- libcfa/prelude/builtins.c	(revision f5e37a4c897469da283b15ac1ff5c92b0e2aa1d1)
+++ libcfa/prelude/builtins.c	(revision 3e2e9b2826111caa0283009feb80b9d771e40592)
@@ -160,4 +160,33 @@
 static inline quasi_void ?=?(quasi_void &, quasi_void & _src) { return _src; }
 
+forall( E ) trait Bounded {
+	E lowerBound(void);
+	E upperBound(void);
+};
+
+forall( E | Bounded( E ) ) trait Serial {
+	int fromInstance( E e );
+	E fromInt_unsafe( int i );
+	E succ_unsafe( E e );
+	E pred_unsafe( E e );
+};
+
+forall( E | Serial( E ) ) {
+	E fromInt( int i );
+	E succ( E e );
+	E pred( E e );
+	int Countof( E );
+}
+
+
+forall( E ) trait CfaEnum {
+	const char * label( E e );
+	int posn( E e );
+};
+
+forall( E, V | CfaEnum( E ) ) trait TypedEnum {
+	V value( E e );
+};
+
 // Local Variables: //
 // mode: c //
Index: libcfa/src/enum.hfa
===================================================================
--- libcfa/src/enum.hfa	(revision f5e37a4c897469da283b15ac1ff5c92b0e2aa1d1)
+++ libcfa/src/enum.hfa	(revision 3e2e9b2826111caa0283009feb80b9d771e40592)
@@ -2,46 +2,4 @@
 
 #include "iostream.hfa"
-
-forall( E ) trait Bounded {
-	E lowerBound(void);
-	E upperBound(void);
-};
-
-forall( E | Bounded( E ) ) trait Serial {
-	int fromInstance( E e );
-	E fromInt_unsafe( int i );
-	E succ_unsafe( E e );
-	E pred_unsafe( E e );
-};
-
-forall( E | Serial( E ) ) {
-	E fromInt( int i );
-	E succ( E e );
-	E pred( E e );
-	int Countof( E );
-}
-
-// forall( E | Bounded(E) ) trait SafeSerial {
-//	 // unsigned fromInstance( E e );
-//	 E fromInt_unsafe( unsigned i );
-//	 // E succ_unsafe( E e );
-//	 //E pred_unsafe( E e );
-
-//	 unsigned fromInstance( E e );
-//	 E fromInt( unsigned i );
-//	 E succ( E e );
-//	 E pred( E e );
-// };
-
-forall( E ) trait CfaEnum {
-	const char * label( E e );
-	int posn( E e );
-};
-
-forall( E, V | CfaEnum( E ) ) trait TypedEnum {
-	V value( E e );
-};
-
-// I/O
 
 forall( istype & | istream( istype ), E | CfaEnum( E ) | Serial(E) )
Index: src/AST/Decl.hpp
===================================================================
--- src/AST/Decl.hpp	(revision f5e37a4c897469da283b15ac1ff5c92b0e2aa1d1)
+++ src/AST/Decl.hpp	(revision 3e2e9b2826111caa0283009feb80b9d771e40592)
@@ -74,4 +74,5 @@
 	bool isTypeFixed = false;
 	bool isHidden = false;
+	bool isMember = false;
 
 	DeclWithType( const CodeLocation& loc, const std::string& name, Storage::Classes storage,
