view gcc/testsuite/g++.dg/torture/pr68470.C @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
line wrap: on
line source

/* { dg-do compile } */

void deallocate(void *);
void *a;

struct C {
    virtual void m_fn1();
};

struct D {
    C *m_fn2() {
	if (a)
	  __builtin_abort();
    }	// { dg-warning "control reaches end of non-void function" }
};
D getd();

struct vec_int {
    int _M_start;
    ~vec_int() {
	if (_M_start)
	  deallocate(&_M_start);
    }
};
vec_int *b;

struct I {
    virtual void m_fn3();
};

void I::m_fn3() {
    if (a)
      getd().m_fn2()->m_fn1();
    b->~vec_int();
}