summaryrefslogtreecommitdiff
path: root/libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/empty.pass.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/empty.pass.cpp')
-rw-r--r--libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/empty.pass.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/empty.pass.cpp b/libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/empty.pass.cpp
deleted file mode 100644
index f0c914a04271..000000000000
--- a/libcxx/test/containers/container.adaptors/priority.queue/priqueue.members/empty.pass.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
-//===----------------------------------------------------------------------===//
-//
-// 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.
-//
-//===----------------------------------------------------------------------===//
-
-// <queue>
-
-// priority_queue();
-
-// bool empty() const;
-
-#include <queue>
-#include <cassert>
-
-int main()
-{
- std::priority_queue<int> q;
- assert(q.empty());
- q.push(1);
- assert(!q.empty());
- q.pop();
- assert(q.empty());
-}