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++/51265] [4.6/4.7 Regression] ICE in finish_decltype_type, at cp/semantics.c:5244


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

--- Comment #3 from Paolo Carlini <paolo.carlini at oracle dot com> 2011-11-22 15:48:12 UTC ---
Even:

struct Funny;

template<typename X>
void c();

template<typename X>
void xx()
{
  c<decltype(ff)>();
}

int main()
{
  xx<int(Funny::*)(int)>();
}


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