view gcc/testsuite/g++.dg/torture/pr68470.C @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents 04ced10e8804
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();
}