This is the mail archive of the gcc-prs@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]

c++/3826: Parse error for static nested class member functions



>Number:         3826
>Category:       c++
>Synopsis:       Parse error for static nested class member functions
>Confidential:   no
>Severity:       serious
>Priority:       medium
>Responsible:    unassigned
>State:          open
>Class:          sw-bug
>Submitter-Id:   net
>Arrival-Date:   Wed Jul 25 15:46:00 PDT 2001
>Closed-Date:
>Last-Modified:
>Originator:     Tom Evans
>Release:        gcc-3.0.1 (16-JUL-01 snapshot)
>Organization:
>Environment:
Linux (redhat 7.1) 2 processor
>Description:
In the following:

class Foo
{
	class Nested_Foo
		{
			 static void doit() {/*do something*/}
		};	
};

template<class T>
void do_some_more()
{	
		T::Nested_Foo::doit();
}

int main()
{
	do_some_more<Foo>()
}

The compiler gives the error on (g++ test.cc)

test.cc: In function `void do_something ()':
test.cc:30: parse error before `::'

(see attached test.cc file)

I can add the following in do_some_more()

template<class T>
void do_some_more()
{
	typedef typename T:Nested_Foo nf;
	nf::doit();
}

and the compiler doesn't have a problem.  Is this a parser error or am I doing something wrong.
>How-To-Repeat:
complie attachment

g++ test.cc
>Fix:
See description.  I think this is a compiler (parser?) bug.
>Release-Note:
>Audit-Trail:
>Unformatted:
----gnatsweb-attachment----
Content-Type: application/octet-stream; name="test.cc"
Content-Transfer-Encoding: base64
Content-Disposition: attachment; filename="test.cc"

Ly8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tKi1DKystKi0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tLS0vLwovLyB0ZXN0LmNjCi8vIFRob21hcyBNLiBFdmFucwovLyBX
ZWQgSnVsIDI1IDEzOjU1OjA0IDIwMDEKLy8gVGltZS1zdGFtcDogPDAxLzA3LzI1IDE2OjMzOjMw
IHRtZT4KLy8tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0vLwovLyBAPiAKLy8tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0v
LwoKI2luY2x1ZGUgPGlvc3RyZWFtPgoKdXNpbmcgbmFtZXNwYWNlIHN0ZDsKCmNsYXNzIEZvbwp7
CiAgcHVibGljOgogICAgY2xhc3MgTmVzdGVkX0ZvbwogICAgewogICAgICBwdWJsaWM6CglzdGF0
aWMgdm9pZCBkb2l0KCkKCXsKCSAgICBjb3V0IDw8ICJIZWxsbyBXb3JsZCIgPDwgZW5kbDsKCX0K
ICAgIH07Cn07Cgp0ZW1wbGF0ZTxjbGFzcyBUPgp2b2lkIGRvX3NvbWV0aGluZygpCnsKICAgIFQ6
Ok5lc3RlZF9Gb286OmRvaXQoKTsKfQoKaW50IG1haW4oKQp7CiAgICBGb286Ok5lc3RlZF9Gb286
OmRvaXQoKTsKCiAgICBkb19zb21ldGhpbmc8Rm9vPigpOwp9CgovLy0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS8vCi8vICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgZW5kIG9mIHRlc3QuY2MKLy8tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0vLwo=


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