//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template // bool regex_search(const basic_string&&, // match_results< // typename basic_string::const_iterator, // Allocator>&, // const basic_regex&, // regex_constants::match_flag_type = // regex_constants::match_default) = delete; #include <__config> #if _LIBCPP_STD_VER <= 11 #error #else #include #include int main() { { std::smatch m; std::regex re{"*"}; std::regex_search(std::string("abcde"), m, re); } } #endif