1 //===----------------------------------------------------------------------===// 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 // class match_results<BidirectionalIterator, Allocator> 13 14 // match_results(const Allocator& a = Allocator()); 15 16 #include <regex> 17 #include <cassert> 18 #include "test_macros.h" 19 20 template <class CharT> 21 void test()22test() 23 { 24 std::match_results<const CharT*> m; 25 assert(m.size() == 0); 26 assert(m.str() == std::basic_string<CharT>()); 27 assert(m.get_allocator() == std::allocator<std::sub_match<const CharT*> >()); 28 } 29 main()30int main() 31 { 32 test<char>(); 33 test<wchar_t>(); 34 } 35