Index: src/Parser/parser.yy
===================================================================
--- src/Parser/parser.yy	(revision 3d56d15b9146a2c5c4e8c499865778a6ec81a378)
+++ src/Parser/parser.yy	(revision 203c667bf3054bae663699ffcac9d515e1a48a6f)
@@ -10,6 +10,6 @@
 // Created On       : Sat Sep  1 20:22:55 2001
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Jun 22 13:59:11 2018
-// Update Count     : 3586
+// Last Modified On : Sun Jun 24 10:41:10 2018
+// Update Count     : 3587
 //
 
@@ -505,9 +505,7 @@
 		{ $$ = new ExpressionNode( build_func( new ExpressionNode( build_postfix_name( $5 ) ), $2 ) ); }
 	| type_name '.' no_attr_identifier					// CFA, nested type
-		// { SemanticError( yylloc, "Qualified name is currently unimplemented." ); $$ = nullptr; }
-		{ $$ = nullptr; }
+		{ SemanticError( yylloc, "Qualified name is currently unimplemented." ); $$ = nullptr; }
 	| type_name '.' '[' field_list ']'					// CFA, nested type / tuple field selector
-		// { SemanticError( yylloc, "Qualified name is currently unimplemented." ); $$ = nullptr; }
-		{ $$ = nullptr; }
+		{ SemanticError( yylloc, "Qualified name is currently unimplemented." ); $$ = nullptr; }
 	| GENERIC '(' assignment_expression ',' generic_assoc_list ')' // C11
 		{
@@ -1834,5 +1832,4 @@
 		{
 			typedefTable.makeTypedef( *$3, forall ? TYPEGENname : TYPEDEFname ); // create typedef
-			//if ( forall ) typedefTable.changeKind( *$3, TYPEGENname ); // possibly update
 			forall = false;								// reset
 		}
@@ -1842,5 +1839,4 @@
 		{
 			typedefTable.makeTypedef( *$3->type->symbolic.name, forall ? TYPEGENname : TYPEDEFname ); // create typedef
-			//if ( forall ) typedefTable.changeKind( *$3->type->symbolic.name, TYPEGENname ); // possibly update
 			forall = false;								// reset
 		}
@@ -1856,5 +1852,4 @@
 		{
 			typedefTable.makeTypedef( *$3, forall ? TYPEGENname : TYPEDEFname );
-			//if ( forall ) typedefTable.changeKind( *$3, TYPEGENname ); // possibly update
 			forall = false;								// reset
 			$$ = DeclarationNode::newAggregate( $1, $3, nullptr, nullptr, false )->addQualifiers( $2 );
