Index: tests/completeTypeError.cfa
===================================================================
--- tests/completeTypeError.cfa	(revision 1dda8deb7319f77e7c7b69e59e8d2b0cff67847d)
+++ tests/completeTypeError.cfa	(revision f29d603f979f396e68b8c34850fd675646eb0efd)
@@ -5,10 +5,10 @@
 forall(dtype T | sized(T)) void quux(T *);
 
-struct A; // incomplete
-struct B {}; // complete
+struct A;	// incomplete
+struct B {};	// complete
 
 int main() {
-	int *i;
-	void *v;
+	int * i;
+	void * v;
 
 	A * x;
@@ -32,5 +32,5 @@
 	// bad
 	*v;
-	*x; // ambiguous
+	*x;	// ambiguous
 	foo(v);
 	baz(v);
@@ -52,7 +52,7 @@
 void qux(T * y) {
 	// okay
+	*y;
 	bar(y);
 	qux(y);
-	*y;
 
 	// bad
