https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796
Jason Merrill changed:
What|Removed |Added
Status|ASSIGNED|RESOLVED
Resolution|---
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796
--- Comment #3 from Jason Merrill ---
Author: jason
Date: Thu Aug 4 16:06:09 2016
New Revision: 239136
URL: https://gcc.gnu.org/viewcvs?rev=239136&root=gcc&view=rev
Log:
PR c++/72796 - wrong resolution of scoped method call.
*
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796
Jason Merrill changed:
What|Removed |Added
Status|NEW |ASSIGNED
CC|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796
Martin Liška changed:
What|Removed |Added
Target Milestone|--- |7.0
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796
Martin Liška changed:
What|Removed |Added
Status|UNCONFIRMED |NEW
Last reconfirmed|
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=72796
--- Comment #1 from Markus Trippelsdorf ---
markus@x4 js % cat jsarray.ii
struct a;
template struct b { typedef a c; };
struct d {
void e(int);
};
struct a : d {
void e(int) = delete;
};
template struct g : b::c {
g(int) { this->d::e(0);