In the following presentation, the table of contents does not show on the second slide, but when I change the whole thing to an article (removing beamer related stuff), the table of contents is shown.
\documentclass{beamer}
\let\Tiny=\tiny
\usetheme{Warsaw}
\setbeamertemplate{headline}{}
\title{Title}
\author{HaskellElephant}
\date{\today}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\frame{\tableofcontents}
\section{description of problem}
\section{Second Section}
\subsection{sub1}
\subsection{sub2}
\subsection*{sub3}
\section{conclusion}
\end{document}
The whole thing is compiled (twice) on the texlive distribution from ubuntu 11.10.
How do I make the table of contents show up on the second slide?