http://llvm.org/bugs/show_bug.cgi?id=6550

Tim <[email protected]> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |RESOLVED
         Resolution|                            |FIXED

--- Comment #20 from Tim <[email protected]> 2011-03-05 16:44:40 CST ---
Yes, I believe so.

$ clang++ -v
clang version 2.9 (trunk 127110)
Target: i386-pc-linux-gnu
Thread model: posix
$ cat test.cc 
#include <fstream>
#include <iostream>

int
main(void) {
  std::ifstream in("/etc/group", std::ios::in);
  in.seekg(0, std::ifstream::beg);
  in.close();

  return 0;
}
$ clang++ -o test test.cc
$

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to