summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/hana/test/string/cnstr.default.cpp
blob: b482e072e44bb04a5a610efc9e397d0322f71dde (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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/string.hpp>
namespace hana = boost::hana;


int main() {
    using Str = decltype(hana::string_c<'a', 'b', 'c', 'd'>);
    Str s{};
    (void)s;
}