summaryrefslogtreecommitdiffstats
path: root/libcxx/test/std/containers/sequences/dynarray/dynarray.zero/default.pass.cpp
blob: 93f3b18f192f50bc3f3fe4f1b3311579fcae1c84 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//===----------------------------------------------------------------------===//
//
//                     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.
//
//===----------------------------------------------------------------------===//

// dynarray.zero

// dynarray shall provide support for the special case of construction with a size of zero.
// In the case that the size is zero, begin() == end() == unique value. 
// The return value of data() is unspecified. 
// The effect of calling front() or back() for a zero-sized dynarray is undefined.


  
#include <__config>

#if _LIBCPP_STD_VER > 11

#include <experimental/dynarray>
#include <cassert>

#include <algorithm>
#include <complex>
#include <string>

using std::experimental::dynarray;

template <class T>
void test ( ) {
    typedef dynarray<T> dynA;
    
    dynA d1 ( 0 );
    assert ( d1.size() == 0 );
    assert ( d1.begin() == d1.end ());
    }

int main()
{
    test<int> ();
    test<double> ();
    test<std::complex<double>> ();
    test<std::string> ();
}
#else
int main() {}
#endif
OpenPOWER on IntegriCloud