12345678910111213141516171819202122232425 |
- //===----------------------------------------------------------------------===//
- //
- // 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}}
- }
|