blob: 0b31409275bf566417cc82ff7abfc92d5a0022e4 [file] [log] [blame]
Howard Hinnant27405f92010-08-14 18:14:02 +00001//===----------------------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00005// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
Howard Hinnant27405f92010-08-14 18:14:02 +00007//
8//===----------------------------------------------------------------------===//
9
10// <regex>
11
12// class match_results<BidirectionalIterator, Allocator>
13
14// size_type max_size() const;
15
16#include <regex>
17#include <cassert>
Howard Hinnant27405f92010-08-14 18:14:02 +000018
19template <class CharT>
20void
21test()
22{
23 std::match_results<const CharT*> m;
24 assert(m.max_size() > 0);
25}
26
27int main()
28{
29 test<char>();
30 test<wchar_t>();
31}