This is the mail archive of the gcc-bugs@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug c++/16261] [3.4 regression] ICE: output_die, at dwarf2out.c:6628


------- Additional Comments From reichelt at gcc dot gnu dot org  2004-11-08 21:49 -------
Here's a testcase without templates:

====================
namespace N
{
    struct A {};
    typedef A B;
}

void foo()
{
    struct C
    {
        C(N::B) {}
    };

    N::B b;
    C c(b);
}
====================


-- 


http://gcc.gnu.org/bugzilla/show_bug.cgi?id=16261


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]