https://gcc.gnu.org/bugzilla/show_bug.cgi?id=125111
Jakub Jelinek <jakub at gcc dot gnu.org> changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jakub at gcc dot gnu.org
--- Comment #1 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Another problematic case, reference to array of unknown bounds:
#include <meta>
using IA = int[];
extern IA& i;
constexpr auto y = ^^i;
constexpr auto yf = std::meta::extract<IA&>(y);
