Index: tests/concurrent/.expect/keywordErrors.txt
===================================================================
--- tests/concurrent/.expect/keywordErrors.txt	(revision 6c3a5ac153db4a253fa595d297454e6bac931353)
+++ tests/concurrent/.expect/keywordErrors.txt	(revision 6c3a5ac153db4a253fa595d297454e6bac931353)
@@ -0,0 +1,4 @@
+concurrent/keywordErrors.cfa:1:1 error: thread keyword requires threads to be in scope, add #include <thread.hfa>struct A: with body 1
+
+concurrent/keywordErrors.cfa:6:1 error: thread keyword requires threads to be in scope, add #include <thread.hfa>struct B: with body 1
+
Index: tests/concurrent/keywordErrors.cfa
===================================================================
--- tests/concurrent/keywordErrors.cfa	(revision 6c3a5ac153db4a253fa595d297454e6bac931353)
+++ tests/concurrent/keywordErrors.cfa	(revision 6c3a5ac153db4a253fa595d297454e6bac931353)
@@ -0,0 +1,6 @@
+thread A {};
+
+// This include isn't enough but used to fool the check
+#include <invoke.h>
+
+thread B {};
