After last update of TeX Live packages this code won't compile:
\documentclass{article}
\usepackage{longtable,tabu}
\usepackage{color}
\begin{document}
\begin{longtabu} to \linewidth {llX}
a & b & c\\
\end{longtabu}
\end{document}
I got an error:
Missing } inserted. \end{longtabu}
if I comment out \usepackage{color} everything works.
Another strange thing - if I change last column type from X to say l - it also works (even with color package added).

array.sty, I suspect this is related to https://tex.stackexchange.com/q/466147/35864 – moewe Jan 07 '19 at 12:12