Index: tests/.expect/quasiKeyword.txt
===================================================================
--- tests/.expect/quasiKeyword.txt	(revision 07c77ceea7c91b294bf22c13628d85c58708c5db)
+++ tests/.expect/quasiKeyword.txt	(revision 07c77ceea7c91b294bf22c13628d85c58708c5db)
@@ -0,0 +1,2 @@
+quasiKeyword.cfa: In function '_X4mainFi_iPPKc__1':
+quasiKeyword.cfa:56:9: note: #pragma message: Compiled
Index: tests/Makefile.am
===================================================================
--- tests/Makefile.am	(revision 72c69507cb6bc3c50770545088eaf70248555a6d)
+++ tests/Makefile.am	(revision 07c77ceea7c91b294bf22c13628d85c58708c5db)
@@ -11,6 +11,6 @@
 ## Created On       : Sun May 31 09:08:15 2015
 ## Last Modified By : Peter A. Buhr
-## Last Modified On : Fri Oct  9 23:13:07 2020
-## Update Count     : 86
+## Last Modified On : Sun Feb 21 15:56:19 2021
+## Update Count     : 87
 ###############################################################################
 
@@ -170,5 +170,5 @@
 
 SYNTAX_ONLY_CODE = expression typedefRedef variableDeclarator switch numericConstants identFuncDeclarator forall \
-	init1 limits nested-types stdincludes cast labelledExit array builtins/sync warnings/self-assignment
+	init1 limits nested-types stdincludes cast labelledExit array quasiKeyword builtins/sync warnings/self-assignment
 $(SYNTAX_ONLY_CODE): % : %.cfa $(CFACCBIN)
 	$(CFACOMPILE_SYNTAX)
Index: tests/quasiKeyword.cfa
===================================================================
--- tests/quasiKeyword.cfa	(revision 07c77ceea7c91b294bf22c13628d85c58708c5db)
+++ tests/quasiKeyword.cfa	(revision 07c77ceea7c91b294bf22c13628d85c58708c5db)
@@ -0,0 +1,55 @@
+//
+// Cforall Version 1.0.0 Copyright (C) 2021 University of Waterloo
+//
+// quasiKeyword.cfa -- test that quasi-keywords can be used for variable and functions names, as well as keywords in
+//					   control structures.
+// 
+// Author           : Peter A. Buhr
+// Created On       : Wed Feb 17 10:33:49 2021
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Sun Feb 21 15:52:04 2021
+// Update Count     : 7
+// 
+
+#include <exception.hfa>
+
+TRIVIAL_EXCEPTION( E );
+
+void catch( int i ) {}
+void recover( int i ) {}
+void catchResume( int i ) {}
+void fixup( int i ) {}
+void finally( int i ) {}
+
+int main(int argc, char const *argv[]) {
+	int catch, recover, catchResume, fixup, finally;
+	try {
+		catch = 3;
+		catch( catch );
+		recover = 3;
+		recover( recover );
+		catchResume = 3;
+		catchResume( catchResume );
+		fixup = 3;
+		fixup( fixup );
+		finally = 3;
+		finally( finally );
+		throw (E){};
+		report (E){};
+		throwResume (E){};
+	} catch ( E * ) {
+	} recover ( E * ) {									// same as catch
+	} catchResume ( E * ) {
+	} fixup ( E * ) {									// same as catchResume
+	} finally {
+	}
+
+	if ( 3 )
+		try {
+		} fixup ( E * ) {
+		} finally {
+		} 
+	else catch = 3;
+
+	#pragma message( "Compiled" )						// force non-empty .expect file
+}
