Lines Matching refs:alloc_last
59 assert(!alloc_last::allocator_constructed); in main()
60 std::tuple<alloc_last> t(std::allocator_arg, A1<int>(5)); in main()
61 assert(alloc_last::allocator_constructed); in main()
62 assert(std::get<0>(t) == alloc_last()); in main()
73 alloc_last::allocator_constructed = false; in main()
74 std::tuple<DefaultOnly, alloc_first, alloc_last> t(std::allocator_arg, in main()
79 assert(alloc_last::allocator_constructed); in main()
80 assert(std::get<2>(t) == alloc_last()); in main()
84 alloc_last::allocator_constructed = false; in main()
85 std::tuple<DefaultOnly, alloc_first, alloc_last> t(std::allocator_arg, in main()
90 assert(!alloc_last::allocator_constructed); in main()
91 assert(std::get<2>(t) == alloc_last()); in main()