// Copyright (c) 2014-2018 Dr. Colin Hirsch and Daniel Frey
// Please see LICENSE for license or visit https://github.com/taocpp/PEGTL/
#include "test.hpp"
#include "verify_seqs.hpp"
namespace tao
{
namespace TAO_PEGTL_NAMESPACE
{
template< typename... Rules >
using test_try_catch_rule = try_catch< must< Rules... > >;
void unit_test()
{
verify_seqs< try_catch >();
verify_seqs< test_try_catch_rule >();
}
} // namespace TAO_PEGTL_NAMESPACE
} // namespace tao
#include "main.hpp"