Home | History | Annotate | Download | only in fpos.operations
      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 // <ios>
     11 
     12 // streamsize and streamoff interconvert
     13 
     14 #include <ios>
     15 #include <cassert>
     16 
     17 int main()
     18 {
     19     std::streamoff o(5);
     20     std::streamsize sz(o);
     21     assert(sz == 5);
     22     std::streamoff o2(sz);
     23     assert(o == o2);
     24 }
     25