Based on How to change symbol for footnote in minipage and Symbols instead of numbers as footnote markers I expected this code to work:
\documentclass{article}
\begin{document}
\begin{minipage}{1\textwidth}
\renewcommand*{\thempfootnote}{\fnsymbol{footnote}}
\begin{tabular}{ll}
\hline
foo & bar\footnote[1]{buzz} \\
foobar & barfoo \\
\hline
\end{tabular}
\end{minipage}
\end{document}
However, I don't get any footnote symbol at all.

It feels like I have made some silly mistake but I can't figure it out. What have I missed?
