blob: 382815e0c1cc1092e3a61146a413da4aa36cbbe5 [file] [log] [blame]
Howard Hinnant262b7792010-08-17 20:42:03 +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 Hinnant262b7792010-08-17 20:42:03 +00007//
8//===----------------------------------------------------------------------===//
9
10// <regex>
11
12// class regex_token_iterator<BidirectionalIterator, charT, traits>
13
14// regex_token_iterator();
15
16#include <regex>
17#include <cassert>
18
19template <class CharT>
20void
21test()
22{
23 typedef std::regex_token_iterator<const CharT*> I;
24 I i1;
25 assert(i1 == I());
26}
27
28int main()
29{
30 test<char>();
31 test<wchar_t>();
Howard Hinnanta8d77592010-08-18 00:13:08 +000032}