1 // Copyright Abel Sinkovics (abel@sinkovics.hu) 2013.
2 // Distributed under the Boost Software License, Version 1.0.
3 //    (See accompanying file LICENSE_1_0.txt or copy at
4 //          http://www.boost.org/LICENSE_1_0.txt)
5 
6 #include <boost/metaparse/string_tag.hpp>
7 
8 #include <boost/mpl/assert.hpp>
9 
10 #include <boost/type_traits/is_same.hpp>
11 
12 #include "test_case.hpp"
13 
BOOST_METAPARSE_TEST_CASE(string_tag)14 BOOST_METAPARSE_TEST_CASE(string_tag)
15 {
16   using boost::metaparse::string_tag;
17 
18   using boost::is_same;
19 
20   // test_metaprogramming_value
21   BOOST_MPL_ASSERT((is_same<string_tag, string_tag::type>));
22 }
23 
24