libstdc++-v3/ChangeLog:
* include/experimental/scope (__cpp_lib_experimental_scope):
Define.
* testsuite/experimental/scopeguard/uniqueres.cc: Check macro.
_GLIBCXX_BEGIN_NAMESPACE_VERSION
namespace experimental::inline fundamentals_v3
{
+#define __cpp_lib_experimental_scope 201902
+
template<typename _Tp, typename _Up>
concept __not_same_as = !same_as<_Tp, _Up>;
#include <experimental/scope>
#include <testsuite_hooks.h>
+#ifndef __cpp_lib_experimental_scope
+# error Feature-test macro is not defined.
+#elif __cpp_lib_experimental_scope < 201902
+# error Feature-test macro has bad value.
+#endif
+
using std::experimental::unique_resource;
void