I'm using the exam package and want to use \fillwithlines{\stretch{1}} but only so it goes .6\textwidth across the page. I've tried using minipage, parbox, and makebox, but none of them work with the \stretch{1} command.
The code below does not print any lines at all.
\documentclass{exam}
\begin{document}
\begin{questions}
\question Question\newline
\begin{minipage}[b]{.6\linewidth}
\fillwithlines{\stretch{1}}
\end{minipage}
\end{questions}
\end{document}