Index: src/tests/Makefile.am
===================================================================
--- src/tests/Makefile.am	(revision d5410577d0c8b539b34bc0b9543bc7f9eff75534)
+++ src/tests/Makefile.am	(revision c6b11050447f84584d700bd73cbbfa96375f827c)
@@ -11,6 +11,6 @@
 ## Created On       : Sun May 31 09:08:15 2015
 ## Last Modified By : Peter A. Buhr
-## Last Modified On : Mon Jun 20 14:30:52 2016
-## Update Count     : 33
+## Last Modified On : Mon Jun 27 14:39:08 2016
+## Update Count     : 34
 ###############################################################################
 
@@ -30,5 +30,5 @@
 
 all-tests :
-	python test.py --all
+	+python test.py --all
 
 clean-local :
Index: src/tests/Makefile.in
===================================================================
--- src/tests/Makefile.in	(revision d5410577d0c8b539b34bc0b9543bc7f9eff75534)
+++ src/tests/Makefile.in	(revision c6b11050447f84584d700bd73cbbfa96375f827c)
@@ -637,5 +637,5 @@
 
 all-tests :
-	python test.py --all
+	+python test.py --all
 
 clean-local :
Index: src/tests/Typedef.c
===================================================================
--- src/tests/Typedef.c	(revision d5410577d0c8b539b34bc0b9543bc7f9eff75534)
+++ src/tests/Typedef.c	(revision c6b11050447f84584d700bd73cbbfa96375f827c)
@@ -2,5 +2,5 @@
 
 void f( void ) {
-    int T( T );
+    int T( T p ) { return 3; }
     T( 3 );
 }
@@ -38,8 +38,8 @@
 typedef [ int, int ] tupleType;
 typedef * [ int, int ] tupleTypePtr;
-typedef * int a, b;
+typedef * int c, d;
 typedef [ int ] f( * int ), g;
 typedef [ * [static 10] int ] t;
-typedef [ * [static 10] int x ] f();
+typedef [ * [static 10] int x ] h();
 
 // Local Variables: //
Index: src/tests/quoted_keyword.c
===================================================================
--- src/tests/quoted_keyword.c	(revision c6b11050447f84584d700bd73cbbfa96375f827c)
+++ src/tests/quoted_keyword.c	(revision c6b11050447f84584d700bd73cbbfa96375f827c)
@@ -0,0 +1,45 @@
+//
+// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+//
+// quoted_keyword.c -- test quoted keyword usage
+//
+// Author           : Peter A. Buhr
+// Created On       : Wed May 27 17:56:53 2015
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Sat Jun 25 08:02:58 2016
+// Update Count     : 16
+//
+
+#include <fstream>
+
+struct {
+	int `otype`;
+	int `struct`;
+} st = { 10, 10 };
+
+typedef int `forall`;
+`forall` xxx = 10;
+
+int `_Alignas`, `_Alignof`, `__alignof`, `__alignof__`, `asm`, `__asm`, `__asm__`, `_At`, `_Atomic`, `__attribute`,
+	`__attribute__`, `auto`, `_Bool`, `break`, `case`, `catch`, `catchResume`, `char`, `choose`, `_Complex`, `__complex`,
+	`__complex__`, `const`, `__const`, `__const__`, `continue`, `default`, `disable`, `do`, `double`, `dtype`, `else`,
+	`enable`, `enum`, `__extension__`, `extern`, `fallthru`, `finally`, `float`, `__float128`, `for`, `forall`, `fortran`,
+	`ftype`, `_Generic`, `goto`, `if`, `_Imaginary`, `__imag`, `__imag__`, `inline`, `__inline`, `__inline__`, `int`,
+	`__int128`, `__label__`, `long`, `lvalue`, `_Noreturn`, `__builtin_offsetof`, `otype`, `register`, `restrict`,
+	`__restrict`, `__restrict__`, `return`, `short`, `signed`, `__signed`, `__signed__`, `sizeof`, `static`,
+	`_Static_assert`, `struct`, `switch`, `_Thread_local`, `throw`, `throwResume`, `trait`, `try`, `typedef`,
+	`typeof`, `__typeof`, `__typeof__`, `union`, `unsigned`, `__builtin_va_list`, `void`, `volatile`, `__volatile`,
+	`__volatile__`, `while`;
+
+int main() {
+	int `if` = 0;
+	sout | `catch` + st.`otype` + st.`struct` + `throw` | endl;
+}
+
+// Local Variables: //
+// tab-width: 4 //
+// compile-command: "cfa quoted_keyword.c" //
+// End: //
