public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/14891] New: Problems with the initialization of static members of template classes
@ 2004-04-08 16:33 gabriele dot greco at darts dot it
  2004-04-08 16:38 ` [Bug c++/14891] " gabriele dot greco at darts dot it
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: gabriele dot greco at darts dot it @ 2004-04-08 16:33 UTC (permalink / raw)
  To: gcc-bugs

gcc version 3.4.0 20040331 (prerelease)

Here is the test code, works with gcc 3.3.x or lower:

#include <iostream>

template <typename T>
class A
{
    static int val;
public:
    typedef A<T> B;
    int get() {return val;}
};

class Z: public A<int>
{
public:
    void foo() { std::cout << "hello: " << get() << std::endl; }
};

int Z::B::val = 666; // ERROR on GCC 3.4
    
int main()
{
    Z z;
    z.foo();
}

-- 
           Summary: Problems with the initialization of static members of
                    template classes
           Product: gcc
           Version: 3.4.0
            Status: UNCONFIRMED
          Severity: normal
          Priority: P2
         Component: c++
        AssignedTo: unassigned at gcc dot gnu dot org
        ReportedBy: gabriele dot greco at darts dot it
                CC: gcc-bugs at gcc dot gnu dot org
 GCC build triplet: i686-pc-linux-gnu
  GCC host triplet: i686-pc-linux-gnu
GCC target triplet: i686-pc-linux-gnu


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


^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2005-04-25  4:12 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-04-08 16:33 [Bug c++/14891] New: Problems with the initialization of static members of template classes gabriele dot greco at darts dot it
2004-04-08 16:38 ` [Bug c++/14891] " gabriele dot greco at darts dot it
2004-04-08 16:42 ` pinskia at gcc dot gnu dot org
2005-04-25  4:12 ` pinskia at gcc dot gnu dot org
2005-04-25  4:15 ` pinskia at gcc dot gnu dot org

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).