view gcc/testsuite/g++.dg/torture/pr46154.C @ 152:2b5abeee2509

update gcc11
author anatofuz
date Mon, 25 May 2020 07:50:57 +0900
parents 04ced10e8804
children
line wrap: on
line source

/* { dg-do compile } */
/* { dg-options "-fipa-cp-clone" } */

struct S
{
  virtual int foo ()
    {
      return foo () == 0;
    }
  virtual void baz ();
};

void A ()
{
  S s;
  s.foo ();
}