report an error when encountering 'while' token parsing declarator
clang/test/Parser/while-loop-outside-function.c:3:1: error: while loop outside of a function while // expected-error {{while loop outside of a function}} ^ clang/test/Parser/while-loop-outside-function.c:7:1: error: while loop outside of a function while // expected-error {{while loop outside of a function}} ^
Looking at other diagnostics which contain the word outside, there are many different ways to spell this.
Other possibilities include:
All of these alternates could be justified with some prior art here.
I have no strong opinions either way, this seems fine, just making a note.