Index: include/bits/basic_ios.h =================================================================== --- include/bits/basic_ios.h (revision 195938) +++ include/bits/basic_ios.h (working copy) @@ -112,13 +112,8 @@ * This allows you to write constructs such as * if (!a_stream) ... and while (a_stream) ... */ -#if __cplusplus >= 201103L - explicit operator bool() const - { return !this->fail(); } -#else operator void*() const { return this->fail() ? 0 : const_cast(this); } -#endif bool operator!() const Index: testsuite/27_io/basic_ios/pr56193.cc =================================================================== --- testsuite/27_io/basic_ios/pr56193.cc (revision 195938) +++ testsuite/27_io/basic_ios/pr56193.cc (working copy) @@ -1,31 +0,0 @@ -// { dg-do compile } -// { dg-options "-std=gnu++11" } - -// 2013-02-06 Edward Smith-Rowland <3dw4rd@verizon.net> -// -// Copyright (C) 2013 Free Software Foundation, Inc. -// -// This file is part of the GNU ISO C++ Library. This library is free -// software; you can redistribute it and/or modify it under the -// terms of the GNU General Public License as published by the -// Free Software Foundation; either version 3, or (at your option) -// any later version. -// -// This library is distributed in the hope that it will be useful, -// but WITHOUT ANY WARRANTY; without even the implied warranty of -// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -// GNU General Public License for more details. -// -// You should have received a copy of the GNU General Public License along -// with this library; see the file COPYING3. If not see -// . - -#include - -// PR libstdc++/56193 -void -test01() -{ - std::cout << std::cout; // { dg-error "cannot bind" } -} -// { dg-error "initializing argument" "" { target *-*-* } 602 }