diff options
author | Marshall Clow <mclow.lists@gmail.com> | 2014-02-19 21:21:11 +0000 |
---|---|---|
committer | Marshall Clow <mclow.lists@gmail.com> | 2014-02-19 21:21:11 +0000 |
commit | 7d357111876c1731ba794092662c48d88eda0004 (patch) | |
tree | 574a8edf7621d5845c62140fbbf9c77f567ebf53 /libcxx/test/re/re.alg/re.alg.match/basic.fail.cpp | |
parent | 0e4aa52e883cf91edef9df73575260f2ffb8b978 (diff) | |
download | bcm5719-llvm-7d357111876c1731ba794092662c48d88eda0004.tar.gz bcm5719-llvm-7d357111876c1731ba794092662c48d88eda0004.zip |
Implement LWG Issues #2329 and #2332 - disallow iterators into temporary regexes and regexes into temporary strings
llvm-svn: 201717
Diffstat (limited to 'libcxx/test/re/re.alg/re.alg.match/basic.fail.cpp')
-rw-r--r-- | libcxx/test/re/re.alg/re.alg.match/basic.fail.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/libcxx/test/re/re.alg/re.alg.match/basic.fail.cpp b/libcxx/test/re/re.alg/re.alg.match/basic.fail.cpp new file mode 100644 index 00000000000..d3b922c0782 --- /dev/null +++ b/libcxx/test/re/re.alg/re.alg.match/basic.fail.cpp @@ -0,0 +1,38 @@ +//===----------------------------------------------------------------------===// +// +// 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. +// +//===----------------------------------------------------------------------===// + +// <regex> + +// template <class ST, class SA, class Allocator, class charT, class traits> +// bool regex_match(const basic_string<charT, ST, SA>&&, +// match_results< +// typename basic_string<charT, ST, SA>::const_iterator, +// Allocator>&, +// const basic_regex<charT, traits>&, +// regex_constants::match_flag_type = +// regex_constants::match_default) = delete; + +#include <__config> + +#if _LIBCPP_STD_VER <= 11 +#error +#else + +#include <regex> +#include <cassert> + +int main() +{ + { + std::smatch m; + std::regex re{"*"}; + std::regex_match(std::string("abcde"), m, re); + } +} +#endif |