Index: tests/castError.cfa
===================================================================
--- tests/castError.cfa	(revision 2ede686f44694164212534ea9c174652d77a0c35)
+++ tests/castError.cfa	(revision f8de4e40d5bcd47b9d45d33c9ece4dfaf5a9329e)
@@ -1,3 +1,17 @@
-//Testing some of the invalid casts of chars
+// 
+// Cforall Version 1.0.0 Copyright (C) 2016 University of Waterloo
+//
+// The contents of this file are covered under the licence agreement in the
+// file "LICENCE" distributed with Cforall.
+// 
+// castError.cfa -- test invalid casts
+// 
+// Author           : Peter A. Buhr
+// Created On       : Tue Feb 19 21:15:39 2019
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Tue Feb 19 21:16:44 2019
+// Update Count     : 1
+// 
+
 int f;
 
@@ -7,9 +21,14 @@
 	(char)f;
 	(int(*)())f;
+
+	unsigned char v;
+	short int v;
+	3, v;		// implicit void cast
 }
 
-//Dummy main
-int main(int argc, char const *argv[])
-{
-	return 0;
-}
+int main() {}
+
+// Local Variables: //
+// tab-width: 4 //
+// compile-command: "cfa castError.cfa" //
+// End: //
