init.pass.cpp (1104B)
1 //===----------------------------------------------------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is dual licensed under the MIT and the University of Illinois Open 6 // Source Licenses. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 // UNSUPPORTED: c++98, c++03 11 12 // <forward_list> 13 14 // forward_list(initializer_list<value_type> il); 15 16 #include <forward_list> 17 #include <cassert> 18 19 #include "min_allocator.h" 20 21 int main() 22 { 23 { 24 typedef int T; 25 typedef std::forward_list<T> C; 26 C c = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; 27 int n = 0; 28 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n) 29 assert(*i == n); 30 assert(n == 10); 31 } 32 { 33 typedef int T; 34 typedef std::forward_list<T, min_allocator<T>> C; 35 C c = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9}; 36 int n = 0; 37 for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n) 38 assert(*i == n); 39 assert(n == 10); 40 } 41 }