Home | History | Annotate | Download | only in string.io
      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 // <string>
     11 
     12 // template<class charT, class traits, class Allocator>
     13 //   basic_istream<charT,traits>&
     14 //   getline(basic_istream<charT,traits>&& is,
     15 //           basic_string<charT,traits,Allocator>& str, charT delim);
     16 
     17 #include <string>
     18 #include <sstream>
     19 #include <cassert>
     20 
     21 int main()
     22 {
     23 #ifndef _LIBCPP_HAS_NO_RVALUE_REFERENCES
     24     {
     25         std::string s("initial text");
     26         getline(std::istringstream(" abc*  def*   ghij"), s, '*');
     27         assert(s == " abc");
     28     }
     29     {
     30         std::wstring s(L"initial text");
     31         getline(std::wistringstream(L" abc*  def*   ghij"), s, L'*');
     32         assert(s == L" abc");
     33     }
     34 #endif  // _LIBCPP_HAS_NO_RVALUE_REFERENCES
     35 }
     36