When running a Query Describe (Ctrl+F9), an "ORA-00936: missing expression" error is returned.
Use a bind variable, instead of using a substitution variable. Bind variables are tied to a datatype and can be described.
Example:
Use...
select :test from dual;
instead of...
select &test from dual;