Fix test bug.

git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@131328 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Howard Hinnant 2011-05-14 00:07:53 +00:00
parent f1151efcb1
commit d515df2a50

View File

@ -80,7 +80,7 @@ int main()
assert(!is.fail());
assert(c == L'b');
is >> c;
assert( is.eof());
assert(!is.eof());
assert(!is.fail());
assert(c == L'c');
}