Despite the fact elem is being hidden, GHC 9.0.2 is upset.
src/Miso/FFI.hs:95:35: error:
Ambiguous occurrence 'elem'
It could refer to
either 'Prelude.elem',
imported from 'Prelude' at src/Miso/FFI.hs:14:8-15
(and originally defined in 'Data.Foldable')
or 'Miso.String.elem',
imported from 'Miso.String' at src/Miso/FFI.hs:67:1-28
(and originally defined in 'Data.Text')
|
95 | classSet <- ((JSS.pack "class") `elem`) <$> listProps obj
Despite the fact
elem
is being hidden, GHC 9.0.2 is upset.