public inbox for gcc-bugs@sourceware.org
help / color / mirror / Atom feed
* [Bug c++/60803] New: Trivial example of overloading in the presence of inheritance fails
@ 2014-04-10  3:21 eric.niebler at gmail dot com
  2014-04-10  5:45 ` [Bug c++/60803] " daniel.kruegler at googlemail dot com
                   ` (4 more replies)
  0 siblings, 5 replies; 6+ messages in thread
From: eric.niebler at gmail dot com @ 2014-04-10  3:21 UTC (permalink / raw)
  To: gcc-bugs

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

            Bug ID: 60803
           Summary: Trivial example of overloading in the presence of
                    inheritance fails
           Product: gcc
           Version: 4.8.2
            Status: UNCONFIRMED
          Severity: major
          Priority: P3
         Component: c++
          Assignee: unassigned at gcc dot gnu.org
          Reporter: eric.niebler at gmail dot com

The following very simple code fails to compile:

///////////////////////////////////
template<typename Ts>
struct refines
  : Ts
{};

struct A
{};

struct B
  : refines<A>
{};

struct C
  : refines<B>
{};

void fun(void *)
{}

template<typename T>
int fun(refines<T> *)
{
  return 0;
}

int main()
{
  C *p = 0;
  int i = fun(p);
}
////////////////////


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-02-01 12:49 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-04-10  3:21 [Bug c++/60803] New: Trivial example of overloading in the presence of inheritance fails eric.niebler at gmail dot com
2014-04-10  5:45 ` [Bug c++/60803] " daniel.kruegler at googlemail dot com
2014-04-10  6:35 ` eric.niebler at gmail dot com
2014-12-14 16:22 ` ville.voutilainen at gmail dot com
2021-08-09 20:15 ` pinskia at gcc dot gnu.org
2022-02-01 12:49 ` marxin at gcc dot gnu.org

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).