Index: tests/.expect/attr-priority.txt
===================================================================
--- tests/.expect/attr-priority.txt	(revision 5ad24a2cd208c7caeaf7524fecf55d071f12e25a)
+++ tests/.expect/attr-priority.txt	(revision 5ad24a2cd208c7caeaf7524fecf55d071f12e25a)
@@ -0,0 +1,6 @@
+attr-priority.cfa:7:1 warning: invalid attribute: constructor priorities from 101 to 200 are reserved for the implementation
+attr-priority.cfa:12:1 warning: invalid attribute: destructor priorities from 101 to 200 are reserved for the implementation
+attr-priority.cfa:8:1 error: Invalid application of existing declaration(s) in expression Applying untyped:
+  Name: malloc
+...to:
+
Index: tests/attr-priority.cfa
===================================================================
--- tests/attr-priority.cfa	(revision 5ad24a2cd208c7caeaf7524fecf55d071f12e25a)
+++ tests/attr-priority.cfa	(revision 5ad24a2cd208c7caeaf7524fecf55d071f12e25a)
@@ -0,0 +1,19 @@
+// Although we are testing the attribute priority checks, we also have a
+// resolver error to force the expect to compare against the compiler output.
+
+int * store = 0p;
+
+__attribute__(( constructor(150) ))
+void ctor_store(void) {
+	store = malloc();
+}
+
+__attribute__(( destructor(150) ))
+void dtor_store(void) {
+	free(store);
+	store = 0;
+}
+
+int main(void) {
+	return 0;
+}
