aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/opt/pr59622-3.C
blob: 0af86050c23a4111c48918e801dbbbbb33d4d686 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// PR tree-optimization/59622
// { dg-do compile }
// { dg-options "-O2" }

struct C { int a; int b; };

namespace
{
  struct A
  {
    virtual C foo ();
    C bar () { return foo (); }
  };
}

C
baz ()
{
  A a;
  return a.bar ();
}