// 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_control_rule = control< normal, Rules... >;
void unit_test()
{
verify_seqs< test_control_rule >();
}
} // namespace TAO_PEGTL_NAMESPACE
} // namespace tao
#include "main.hpp"