Index: src/Parser/parser.yy
===================================================================
--- src/Parser/parser.yy	(revision b69ea6b554214dcd325045f0da798f46a485fa59)
+++ src/Parser/parser.yy	(revision d27e340b8e30b8c3db286ab5e415cea7c6705b57)
@@ -10,6 +10,6 @@
 // Created On       : Sat Sep  1 20:22:55 2001
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Dec 21 11:32:56 2017
-// Update Count     : 2996
+// Last Modified On : Tue Feb 13 11:40:34 2018
+// Update Count     : 2999
 //
 
@@ -482,7 +482,7 @@
 		{ $$ = new ExpressionNode( new StmtExpr( dynamic_cast< CompoundStmt * >(maybeMoveBuild< Statement >($2) ) ) ); }
 	| type_name '.' no_attr_identifier					// CFA, nested type
-		{ throw SemanticError("Qualified names are currently unimplemented."); $$ = nullptr; }								// FIX ME
+		{ throw SemanticError("Qualified names are currently unimplemented."); $$ = nullptr; } // FIX ME
 	| type_name '.' '[' push field_list pop ']'			// CFA, nested type / tuple field selector
-		{ throw SemanticError("Qualified names are currently unimplemented."); $$ = nullptr; }								// FIX ME
+		{ throw SemanticError("Qualified names are currently unimplemented."); $$ = nullptr; } // FIX ME
 	;
 
@@ -767,4 +767,6 @@
 	| unary_expression assignment_operator assignment_expression
 		{ $$ = new ExpressionNode( build_binary_val( $2, $1, $3 ) ); }
+	| unary_expression '=' '{' initializer_list comma_opt '}' // FIX ME
+		{ $$ = nullptr; }
 	;
 
@@ -1050,4 +1052,6 @@
 	| RETURN comma_expression_opt ';'
 		{ $$ = new StatementNode( build_return( $2 ) ); }
+	| RETURN '{' initializer_list comma_opt '}'			// FIX ME
+		{ $$ = nullptr; }
 	| THROW assignment_expression_opt ';'				// handles rethrow
 		{ $$ = new StatementNode( build_throw( $2 ) ); }
Index: src/tests/alloc.c
===================================================================
--- src/tests/alloc.c	(revision b69ea6b554214dcd325045f0da798f46a485fa59)
+++ src/tests/alloc.c	(revision d27e340b8e30b8c3db286ab5e415cea7c6705b57)
@@ -10,6 +10,6 @@
 // Created On       : Wed Feb  3 07:56:22 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Mon Jan 22 21:26:40 2018
-// Update Count     : 326
+// Last Modified On : Wed Feb 14 17:52:36 2018
+// Update Count     : 328
 //
 
@@ -27,6 +27,6 @@
 int main( void ) {
 	size_t dim = 10;
+	char fill = '\xff';
 	int * p;
-	char fill = '\1';
 
 	// allocation, non-array types
