aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/inherit/using2.C
blob: 19f06e9cc02230a45f488804b10a51ca882869f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// { dg-do run }

// Copyright (C) 2002 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 15 Sep 2002 <nathan@codesourcery.com>

// PR 7919. Methods found via using decls didn't have their this
// pointers converted to the final base type.

struct Base {
  int m;
  protected:
  void *Return () { return this; }
};

struct Derived : Base {
  using Base::Return;
  virtual ~Derived () {}
};

int main ()
{
  Derived d;
  
  return static_cast <Base *> (&d) != d.Return ();
}