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]

Re: c++/7077: conversion operator to typedef in template class


Old Synopsis: nested typedef conversion operator
New Synopsis: conversion operator to typedef in template class

State-Changed-From-To: open->analyzed
State-Changed-By: bangerth
State-Changed-When: Fri Oct 25 15:33:13 2002
State-Changed-Why:
    Confirmed. A slightly reduced testcase is this
    ----------------------------------
    struct X { int i; };
    
    template <class T> struct Y {
        typedef int X::*b;
        operator b();
    };
    
    template <class T> Y<T>::operator typename Y<T>::b() {
        return &X::i;
    }
    -------------------------------------

http://gcc.gnu.org/cgi-bin/gnatsweb.pl?cmd=view%20audit-trail&database=gcc&pr=7077


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