I tried using a list in LaTeX (pdflatex, specifically) and I found that the second item does not have a bullet point rendered while the first and third (and remaining ones) does. Why is it? Please compile the code below to see what I mean.
\documentclass{article}
\begin{document}
\begin{list}{$\bullet$}
\item A
\item B
\item C
\end{list}
\end{document}
