//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // deque() #include #include #include "../../../stack_allocator.h" #include "../../../NotConstructible.h" template void test() { std::deque d; assert(d.size() == 0); } int main() { test >(); test >(); }