view gcc/testsuite/g++.dg/warn/Wnonnull-compare-2.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

// PR c++/69850
// { dg-do compile }
// { dg-options "-Wnonnull-compare" }

struct D {
  virtual ~D ();
  void foo () const { delete this; }	// { dg-bogus "nonnull argument" }
  template <typename> friend struct A;
};
template <typename T> struct A {
  static void bar (T *x) { x->foo (); }
};
template <typename T> struct B {
  T b;
  void baz () { A<T>::bar (&b); }
};
class C {
  class E : public D { ~E (); };
  void baz ();
  B<E> c;
};

void
C::baz ()
{
  c.baz ();
}