https://gcc.gnu.org/bugzilla/show_bug.cgi?id=82728

Jakub Jelinek <jakub at gcc dot gnu.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |jakub at gcc dot gnu.org

--- Comment #2 from Jakub Jelinek <jakub at gcc dot gnu.org> ---
Testcase from another PR for similar issue:
enum a { b };     
struct c {
        template < a > int d() {
                const bool is_ident = 0;
                const int ret = is_ident ? 7 : 9;
                return ret;
        }
        void e() {
                d < b > ();
        }
};

Reply via email to