public inbox for gcc-prs@sourceware.org
help / color / mirror / Atom feed
From: pooh@msu.ru
To: gcc-gnats@gcc.gnu.org
Subject: c++/2626: extern declaration inside a template member is not considered in namespace scope
Date: Tue, 24 Apr 2001 06:06:00 -0000	[thread overview]
Message-ID: <20010424125727.31827.qmail@sourceware.cygnus.com> (raw)

>Number:         2626
>Category:       c++
>Synopsis:       extern declaration inside a template member is not considered in namespace scope
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          rejects-legal
>Submitter-Id:   net
>Arrival-Date:   Tue Apr 24 06:06:00 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Andrey Slepuhin
>Release:        gcc version 3.0 20010422 (prerelease)
>Organization:
>Environment:
x86 RedHat Linux 6.2, kernel-2.2.18, glibc-2.1.3
>Description:
gcc does not consider extern declaration in namespace scope

pooh@cluster:~/work/grace/examples$ gcc tt.cc
/tmp/ccAXbH6i.o: In function `A::X<int>::X()':
/tmp/ccAXbH6i.o(.gnu.linkonce.t._ZN1A1XIiEC1Ev+0xb): undefined reference to `abcdef'
collect2: ld returned 1 exit status
>How-To-Repeat:
#include <cstdio>

namespace A
{

int abcdef;

template <typename val_t>
class X
{
public:
  inline X ()
  {
    extern int abcdef;
    printf("%d\n", abcdef);
  }
};

}

using namespace A;

int main (int argc, char* argv[])
{
  X<int> x;
  return 0;
}
>Fix:

>Release-Note:
>Audit-Trail:
>Unformatted:


             reply	other threads:[~2001-04-24  6:06 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-04-24  6:06 pooh [this message]
2001-07-10 23:26 mmitchel

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20010424125727.31827.qmail@sourceware.cygnus.com \
    --to=pooh@msu.ru \
    --cc=gcc-gnats@gcc.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).