blob: 87998e18c581a3c3383c71e7a367a508e608f67e [file] [log] [blame]
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00001//===----------------------------------------------------------------------===//
2//
Howard Hinnantf5256e12010-05-11 21:36:01 +00003// The LLVM Compiler Infrastructure
Howard Hinnantbc8d3f92010-05-11 19:42:16 +00004//
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 Hinnantbc8d3f92010-05-11 19:42:16 +00007//
8//===----------------------------------------------------------------------===//
9
Asiri Rathnayakecc2e93c2015-11-10 11:41:22 +000010// XFAIL: libcpp-no-exceptions
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000011// <string>
12
13// const_reference at(size_type pos) const;
14// reference at(size_type pos);
15
16#include <string>
17#include <stdexcept>
18#include <cassert>
19
Marshall Clow061d0cc2013-11-26 20:58:02 +000020#include "min_allocator.h"
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000021
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000022template <class S>
23void
24test(S s, typename S::size_type pos)
25{
26 try
27 {
28 const S& cs = s;
29 assert(s.at(pos) == s[pos]);
30 assert(cs.at(pos) == cs[pos]);
31 assert(pos < cs.size());
32 }
33 catch (std::out_of_range&)
34 {
35 assert(pos >= s.size());
36 }
37}
38
39int main()
40{
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000041 {
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000042 typedef std::string S;
43 test(S(), 0);
44 test(S("123"), 0);
45 test(S("123"), 1);
46 test(S("123"), 2);
47 test(S("123"), 3);
Howard Hinnant9dcdcde2013-06-28 16:59:19 +000048 }
49#if __cplusplus >= 201103L
50 {
51 typedef std::basic_string<char, std::char_traits<char>, min_allocator<char>> S;
52 test(S(), 0);
53 test(S("123"), 0);
54 test(S("123"), 1);
55 test(S("123"), 2);
56 test(S("123"), 3);
57 }
58#endif
Howard Hinnantbc8d3f92010-05-11 19:42:16 +000059}