How can I avoid the line break at the begin of an enumerate environment? I've noticed that theorem-style environments succeed in doing so. I'm using the enumitem package and my concrete example is:
\textbf{Example:} % don't want a line break here!
\begin{enumerate}
\item test1
\item test2
\end{enumerate}
I tried wrapping the enumerate in a vbox but that just shifted the entire list up...

