Add a test to verify that the implementation of inout_ptr is not
vulnerable to LWG Issue 3897.
libstdc++-v3/ChangeLog:
* testsuite/20_util/smartptr.adapt/inout_ptr/2.cc: Add check
for LWG Issue 3897.
Co-authored-by: Jonathan Wakely <jwakely@redhat.com>
VERIFY( upbd->id == 2 );
}
+void
+test_lwg3897()
+{
+ // Verify that implementation handles LWG Issue 3897
+ auto nuller = [](int** p) {
+ delete *p;
+ *p = nullptr;
+ };
+ int* i = new int{5};
+ nuller(std::inout_ptr(i));
+
+ VERIFY( i == nullptr );
+}
+
int main()
{
test_unique_ptr();
+ test_lwg3897();
}