blob: d990714acfd140bd4a1e851b0322ad779e6453d8 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// UNSUPPORTED: c++98, c++03
// <experimental/memory_resource>
// Check that memory_resource is not constructible
#include <experimental/memory_resource>
#include <type_traits>
#include <cassert>
namespace ex = std::experimental::pmr;
int main()
{
ex::memory_resource m; // expected-error {{variable type 'ex::memory_resource' is an abstract class}}
}