blob: 82f8e3b7ee89885ad0a93fa1f736136477ac7ede [file] [log] [blame]
Marshall Clowe0f86722014-02-19 21:21:11 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <regex>
11
12// template <class ST, class SA, class Allocator, class charT, class traits>
13// bool regex_match(const basic_string<charT, ST, SA>&&,
14// match_results<
15// typename basic_string<charT, ST, SA>::const_iterator,
16// Allocator>&,
17// const basic_regex<charT, traits>&,
18// regex_constants::match_flag_type =
19// regex_constants::match_default) = delete;
20
Dan Albert1d4a1ed2016-05-25 22:36:09 -070021#if __cplusplus <= 201402L
22#error
23#else
24
Marshall Clowe0f86722014-02-19 21:21:11 +000025#include <regex>
26#include <cassert>
Marshall Clow85d56222016-04-26 19:29:35 +000027
Marshall Clowe0f86722014-02-19 21:21:11 +000028int main()
29{
30 {
31 std::smatch m;
32 std::regex re{"*"};
33 std::regex_match(std::string("abcde"), m, re);
34 }
35}
Dan Albert1d4a1ed2016-05-25 22:36:09 -070036#endif