Home | History | Annotate | Download | only in re.tokiter.cnstr
      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 regex_token_iterator<BidirectionalIterator, charT, traits>
     13 
     14 // regex_token_iterator();
     15 
     16 #include <regex>
     17 #include <cassert>
     18 #include "test_macros.h"
     19 
     20 template <class CharT>
     21 void
     22 test()
     23 {
     24     typedef std::regex_token_iterator<const CharT*> I;
     25     I i1;
     26     assert(i1 == I());
     27 }
     28 
     29 int main()
     30 {
     31     test<char>();
     32     test<wchar_t>();
     33 }
     34