about summary refs log tree commit diff
path: root/third_party/immer/test/box/vector-of-boxes-transient.cpp
blob: 623c8ba37d325f699b00b6ee6e019bf717d8380e (plain) (blame)
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
//
// immer: immutable data structures for C++
// Copyright (C) 2016, 2017, 2018 Juan Pedro Bolivar Puente
//
// This software is distributed under the Boost Software License, Version 1.0.
// See accompanying file LICENSE or copy at http://boost.org/LICENSE_1_0.txt
//

#include <immer/box.hpp>
#include <immer/vector.hpp>
#include <immer/vector_transient.hpp>

#include <catch.hpp>

TEST_CASE("issue-33")
{
    using Element = immer::box<std::string>;
    auto vect     = immer::vector<Element>{};

    // this one works fine
    for (auto i = 0; i < 100; ++i) {
        vect = vect.push_back(Element("x"));
    }

    // this one doesn't compile
    auto t = vect.transient();

    for (auto i = 0; i < 100; ++i) {
        t.push_back(Element("x"));
    }

    vect = t.persistent();

    CHECK(*vect[0] == "x");
    CHECK(*vect[99] == "x");
}