\documentclass[pstricks,border=12pt]{standalone}
\usepackage{pstricks-add}
\begin{document}
\begin{pspicture}[showgrid=bottom](4,2)
\pstVerb
{
/a 2 def
/bb 1 def
}%
\rput(!a bb){First Page}
\end{pspicture}
\end{document}
My a silently overrides the PSTricks' definition. I need a way to know this silent substitution. Is there a way to know name clashes in PostScript level between ones used in PSTricks packages and our own definitions?
