summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/lookup/using54.C
blob: 680bdadaa26ee620e1b80649cfa67510a57084c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// PR c++/60894

struct B
{
  struct S {};
};

struct D : B
{
  using B::S;
  void doIt(struct S&);
};

void D::doIt(struct S&)
{
}