//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // class regex_token_iterator // regex_token_iterator(); #include #include template void test() { typedef std::regex_token_iterator I; I i1; assert(i1 == I()); } int main() { test(); test(); }