//===----------------------------------------------------------------------===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // class regex_iterator // regex_iterator(); #include #include #include "test_macros.h" template void test() { typedef std::regex_iterator I; I i1; assert(i1 == I()); } int main(int, char**) { test(); test(); return 0; }