Whenever I load the packages breqn and icomma into the same document, the document fails to compile. The order of the packages makes no difference. MWE:
\documentclass{article}
\usepackage{breqn}
\usepackage{icomma}
\begin{document}
Look mama, no hands!
\end{document}
raises the following cryptic error:
This is pdfTeX, Version 3.14159265-2.6-1.40.18 (TeX Live 2017/Debian) (preloaded format=pdflatex)
restricted \write18 enabled.
entering extended mode
(./test.tex
LaTeX2e <2017-04-15>
Babel <3.18> and hyphenation patterns for 84 language(s) loaded.
(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls
Document Class: article 2014/09/29 v1.4h Standard LaTeX document class
.
. [lines omitted for brevity]
.
(/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty))
(/usr/share/texlive/texmf-dist/tex/latex/was/icomma.sty) (./test.aux)
! Bad mathchar (32768).
<to be read again>
\mathcode
l.4 \begin{document}
?
but compiles if either of the packages are commented out.
I could not find anyone else with this problem. Does anyone know of a workaround, or if not, who should this bug be reported to (I've never reported a bug to a package manager before)?

breqn: (1) Don't use it. (2) Don't use it. (3) Don't use it. ;-) – Apr 08 '19 at 18:30icommabefore I tried usingbreqn, and after removingicommafor this specific document, I found thatbreqnalso requires restructuring every single occurence ofa_\text{x}in that document – so I probably won't be using it after all, easier to manually set line breaks... – MrArsGravis Apr 08 '19 at 18:37a_\text{x}in any case. the fact that the braces can be omitted is an accident of the implementation and is not documented markup, also it should usually be\mathrmnot\text, soa_{\mathrm{x}}– David Carlisle Apr 08 '19 at 19:11textvs.mathrm: That actually is intentional, sincemathrmlooks wrong if the remainder of the document is in sans-serif font, e.g. inbeamer.textalso seems to be semantically correct for subscripts such as "mixed" or "radial" or whatever it might be, no? – MrArsGravis Apr 09 '19 at 14:10