summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/tuple/smart_ptr.cpp
blob: aea7dc8576d9b83f7664080abc4db10d3c715a43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright Louis Dionne 2013-2017
// Distributed under the Boost Software License, Version 1.0.
// (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)

#include <boost/hana/tuple.hpp>

#include <memory>
namespace hana = boost::hana;


// Tuples of smart pointers; based on LLVM bug #18350
int main() {
    {
        hana::tuple<std::unique_ptr<char>> up;
        hana::tuple<std::shared_ptr<char>> sp;
        hana::tuple<std::weak_ptr  <char>> wp;
    }
    {
        hana::tuple<std::unique_ptr<char[]>> up;
        hana::tuple<std::shared_ptr<char[]>> sp;
        hana::tuple<std::weak_ptr  <char[]>> wp;
    }
}