blob: 2698e2d91693ea51da6877e0ac50bf86a903601d [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// difference_type position(size_type sub = 0) const;
15
16#include <regex>
17#include <cassert>
Howard Hinnant27405f92010-08-14 18:14:02 +000018
19void
20test()
21{
22 std::match_results<const char*> m;
23 const char s[] = "abcdefghijk";
24 assert(std::regex_search(s, m, std::regex("cd((e)fg)hi")));
25 assert(m.position() == std::distance(s, m[0].first));
26 assert(m.position(0) == std::distance(s, m[0].first));
27 assert(m.position(1) == std::distance(s, m[1].first));
28 assert(m.position(2) == std::distance(s, m[2].first));
29 assert(m.position(3) == std::distance(s, m[3].first));
30 assert(m.position(4) == std::distance(s, m[4].first));
31}
32
33int main()
34{
35 test();
36}