//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // istreambuf_iterator // pointer operator->() const; #include #include #include typedef char C; int main () { std::istringstream s("filename"); std::istreambuf_iterator i(s); (*i).~C(); // This is well-formed... i->~C(); // ... so this should be supported! }