Index: tests/concurrent/.expect/mainError.txt
===================================================================
--- tests/concurrent/.expect/mainError.txt	(revision a494d1055b2782f956b9b766d4b211dbc716fc5a)
+++ tests/concurrent/.expect/mainError.txt	(revision a494d1055b2782f956b9b766d4b211dbc716fc5a)
@@ -0,0 +1,11 @@
+concurrent/mainError.cfa:1:1 error: thread keyword requires threads to be in scope, add #include <thread.hfa>
+thread Test: with body 1
+
+concurrent/mainError.cfa:2:1 error: thread keyword requires threads to be in scope, add #include <thread.hfa>
+main: function
+... with parameters
+  reference to instance of struct Test with body 1
+... returning nothing
+... with body
+  CompoundStmt
+
Index: tests/concurrent/mainError.cfa
===================================================================
--- tests/concurrent/mainError.cfa	(revision a494d1055b2782f956b9b766d4b211dbc716fc5a)
+++ tests/concurrent/mainError.cfa	(revision a494d1055b2782f956b9b766d4b211dbc716fc5a)
@@ -0,0 +1,2 @@
+thread Test {};
+void main(Test&) {}
