Home | History | Annotate | Download | only in forwardlist.cons
      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 // <forward_list>
     11 
     12 // forward_list(initializer_list<value_type> il);
     13 
     14 #include <forward_list>
     15 #include <cassert>
     16 
     17 int main()
     18 {
     19 #ifndef _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
     20     {
     21         typedef int T;
     22         typedef std::forward_list<T> C;
     23         C c = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};
     24         unsigned n = 0;
     25         for (C::const_iterator i = c.begin(), e = c.end(); i != e; ++i, ++n)
     26             assert(*i == n);
     27         assert(n == 10);
     28     }
     29 #endif  // _LIBCPP_HAS_NO_GENERALIZED_INITIALIZERS
     30 }
     31